https://bugzilla.wikimedia.org/show_bug.cgi?id=41297

--- Comment #2 from Daniel Friesen <mediawiki-b...@nadir-seen-fire.com> 
2012-10-23 08:41:29 UTC ---
(In reply to comment #1)
> That url is not really useful... "The file you uploaded is too big
> Files uploaded to WAVE cannot be larger than 450 kilobytes."

Looks like it's inconsistently working and not working.

Here's a smaller disambiguation page that'll also have less superfluous content
in the way.

http://wave.webaim.org/report?view=textonly&url=http://en.wikipedia.org/wiki/Ian_Fleming_%28disambiguation%29

> Maybe we should use visibility: hidden instead?

visibility: hidden; is supposed to have the same effect on screen readers as
display: none; does.

There are a few notable techniques for hiding things visually while leaving
them in the page for screen readers.

{ position: absolute; left: -9000px; } /* Or some variant using -9999px, top:
of the same value, and/or !important */

And:
{ overflow: hidden; height: 0; }

WordPress seems to like this technique:
{ position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,
1px, 1px, 1px); }

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to