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

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: Remove unintentionally modified file 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="Title">
7 <input id="c1" type="checkbox" title="Title">
8 <input id="c2" type="checkbox" title="Title" aria-label="AriaLabel">
9 <input id="c3" type="checkbox" title="Title" aria-label="AriaLabel"
10 aria-labelledby="lb3">
11 <input id="c4" type="checkbox" title="Title" aria-label="AriaLabel"
12 aria-labelledby="lb4" aria-describedby="db4">
13 <input id="c5" type="checkbox" aria-describedby="db5">
14
aboxhall 2012/08/01 01:56:57 You might want to add a test for getting the name
dmazzoni 2012/08/01 03:22:41 I could be wrong but I think that's only for an AR
aboxhall 2012/08/06 01:55:49 Oh, oops, I misread type="checkbox" for role="chec
15 <p aria-label="@NO_DUMP">
aboxhall 2012/08/06 01:55:49 Just for my understanding for writing tests in fut
16 <label for="c1">Label</label>
17 <label for="c2">Label</label>
18 <label for="c3">Label</label>
19 <label for="c4">Label</label>
20 <span id="lb3">LabelledBy</span>
21 <span id="lb4">LabelledBy</span>
22 <span id="db4">DescribedBy</span>
23 <span id="db5">DescribedBy</span>
24 </p>
25 </body>
26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698