Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: content/test/data/accessibility/checkbox-name-calc.html

Issue 10823073: Improve accessible name calculation on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!--
2 @WIN-ALLOW:description*
3 -->
4 <html>
5 <body>
6 <input id="c0" type="checkbox" title="Title0">
7 <input id="c1" type="checkbox" title="Title1">
8 <input id="c2" type="checkbox" title="Title2" aria-label="AriaLabel2">
9 <input id="c3" type="checkbox" title="Title3" aria-label="AriaLabel3"
10 aria-labelledby="lb3">
11 <input id="c4" type="checkbox" title="Title4" aria-label="AriaLabel4"
12 aria-labelledby="lb4" aria-describedby="db4">
13 <input id="c5" type="checkbox" aria-describedby="db5">
14
15 <p aria-label="@NO_DUMP">
16 <label for="c1">Label1</label>
17 <label for="c2">Label2</label>
18 <label for="c3">Label3</label>
19 <label for="c4">Label4</label>
20 <span id="lb3">LabelledBy3</span>
21 <span id="lb4">LabelledBy4</span>
22 <span id="db4">DescribedBy4</span>
23 <span id="db5">DescribedBy5</span>
24 </p>
25 </body>
26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698