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

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

Issue 2492083002: Implement aria-placeholder (Closed)
Patch Set: Rebaseline android placeholder test Created 4 years 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
1 <!-- 1 <!--
2 @WIN-ALLOW:description* 2 @WIN-ALLOW:description*
3 @WIN-ALLOW:explicit-name* 3 @WIN-ALLOW:explicit-name*
4 --> 4 -->
5 <html> 5 <html>
6 <body> 6 <body>
7 <input id="c0" type="text" title="Title0"> 7 <input id="c0" type="text" title="Title0">
8 <input id="c1" type="text" title="Title1"> 8 <input id="c1" type="text" title="Title1">
9 <input id="c2" type="text" title="Title2" aria-label="AriaLabel2"> 9 <input id="c2" type="text" title="Title2" aria-label="AriaLabel2">
10 <input id="c3" type="text" title="Title3" aria-label="AriaLabel3" 10 <input id="c3" type="text" title="Title3" aria-label="AriaLabel3"
11 aria-labelledby="lb3"> 11 aria-labelledby="lb3">
12 12
13 <input id="c4" type="text" placeholder="Placeholder4"> 13 <input id="c4" type="text" placeholder="Placeholder4">
14 <input id="c4a" type="text" aria-placeholder="ARIA Placeholder4a">
15 <input id="c4b" type="text" aria-placeholder="ARIA Placeholder4b" placeholder= "Placeholder4b">
14 <input id="c5" type="text" placeholder="Placeholder5" title="Title5"> 16 <input id="c5" type="text" placeholder="Placeholder5" title="Title5">
15 17
16 <input id="c6" type="text" title="Title6" 18 <input id="c6" type="text" title="Title6"
17 aria-label="AriaLabel6" aria-labelledby="lb6" 19 aria-label="AriaLabel6" aria-labelledby="lb6"
18 aria-describedby="db6"> 20 aria-describedby="db6">
19 21
20 <p aria-label="@NO_DUMP"> 22 <p aria-label="@NO_DUMP">
21 <label for="c1">Label1</label> 23 <label for="c1">Label1</label>
22 <label for="c2">Label2</label> 24 <label for="c2">Label2</label>
23 <label for="c3">Label3</label> 25 <label for="c3">Label3</label>
24 26
25 <label for="c6">Label6</label> 27 <label for="c6">Label6</label>
26 28
27 <span id="lb3">LabelledBy3</span> 29 <span id="lb3">LabelledBy3</span>
28 30
29 <span id="lb6">LabelledBy6</span> 31 <span id="lb6">LabelledBy6</span>
30 32
31 <span id="db6">DescribedBy6</span> 33 <span id="db6">DescribedBy6</span>
32 </p> 34 </p>
33 </body> 35 </body>
34 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698