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

Side by Side Diff: content/test/data/accessibility/input-text-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="text" title="Title">
7 <input id="c1" type="text" title="Title">
8 <input id="c2" type="text" title="Title" aria-label="AriaLabel">
9 <input id="c3" type="text" title="Title" aria-label="AriaLabel"
10 aria-labelledby="lb3">
11
12 <input id="c4" type="text" placeholder="Placeholder">
13 <input id="c5" type="text" placeholder="Placeholder" title="Title">
14 <input id="c6" type="text" placeholder="Placeholder" title="Title">
15 <input id="c7" type="text" placeholder="Placeholder" title="Title"
16 aria-label="AriaLabel">
17 <input id="c8" type="text" placeholder="Placeholder" title="Title"
18 aria-label="AriaLabel" aria-labelledby="lb8">
19 <input id="c9" type="text" placeholder="Placeholder" title="Title"
20 aria-label="AriaLabel" aria-labelledby="lb9"
21 aria-describedby="db9">
22
23 <p aria-label="@NO_DUMP">
24 <label for="c1">Label</label>
25 <label for="c2">Label</label>
26 <label for="c3">Label</label>
27 <label for="c6">Label</label>
28 <label for="c7">Label</label>
29 <label for="c8">Label</label>
30 <label for="c9">Label</label>
31 <span id="lb3">LabelledBy</span>
32 <span id="lb8">LabelledBy</span>
33 <span id="lb9">LabelledBy</span>
34 <span id="db9">DescribedBy</span>
35 </p>
36 </body>
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698