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

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

Issue 815463006: Separating ARIA, HTML & event AX test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
OLDNEW
(Empty)
1 <!--
2 @WIN-ALLOW:description*
3 -->
4 <html>
5 <body>
6 <input id="c0" type="text" title="Title0">
7 <input id="c1" type="text" title="Title1">
8 <input id="c2" type="text" title="Title2" aria-label="AriaLabel2">
9 <input id="c3" type="text" title="Title3" aria-label="AriaLabel3"
10 aria-labelledby="lb3">
11
12 <input id="c4" type="text" placeholder="Placeholder4">
13 <input id="c5" type="text" placeholder="Placeholder5" title="Title5">
14
15 <input id="c6" type="text" title="Title6"
16 aria-label="AriaLabel6" aria-labelledby="lb6"
17 aria-describedby="db6">
18
19 <p aria-label="@NO_DUMP">
20 <label for="c1">Label1</label>
21 <label for="c2">Label2</label>
22 <label for="c3">Label3</label>
23
24 <label for="c6">Label6</label>
25
26 <span id="lb3">LabelledBy3</span>
27
28 <span id="lb6">LabelledBy6</span>
29
30 <span id="db6">DescribedBy6</span>
31 </p>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698