﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc	focuses
65488	#wpfooter unavailable on 200% zoom (WCAG 1.4.10 Reflow (Level AA))	alh0319		"There is CSS that intentionally hides #wpfooter on mobile.


{{{
@media screen and (max-width: 782px) {
    #wpfooter {
        display: none;
    }
}
}}}

The footer holds important information about the current WordPress version and can be extended by themes and plugins to hold other important links or information.

If a user has low vision and is zoomed in 200% or more, they do not have access to any information in the footer. This is a failure of [https://www.w3.org/WAI/WCAG21/Understanding/reflow.html WCAG 1.4.10 Reflow] (Level AA).

How to test: 
1. Set your browser width to 1280 CSS pixels wide.
2. Go to the main dashboard page in the admin.
3. Zoom your browser and observe that the footer disappears.

The footer should stay visible up to 400% zoom, which can be achieved by removing this CSS.


"	defect (bug)	new	normal	Awaiting Review	General		normal		has-patch		accessibility, css
