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

Side by Side Diff: content/test/data/accessibility/html/input-text-aria-placeholder.html

Issue 2492083002: Implement aria-placeholder (Closed)
Patch Set: Rebase DumpAccessibilityTree tests Created 4 years, 1 month 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 @MAC-ALLOW:AXRole*
3 @MAC-ALLOW:AXDescription*
4 @MAC-ALLOW:AXPlaceholder*
5 @WIN-ALLOW:placeholder*
6 @WIN-ALLOW:description*
7 @BLINK-ALLOW:placeholder=*
8 @BLINK-ALLOW:description=*
9 -->
10 <!DOCTYPE html>
11 <html>
12 <body>
13 <input type="text" aria-placeholder="aria-placeholder1" autofocus>
dmazzoni 2016/11/16 23:34:34 Maybe remove autofocus? It doesn't make sense on m
aboxhall 2016/11/17 00:42:37 Done.
14 <input type="text" aria-placeholder="aria-placeholder2" placeholder="placeho lder2" autofocus>
15 <input type="text" aria-label="aria-label3" aria-placeholder="aria-placehold er3" placeholder="placeholder3" autofocus>
16 <input type="text" aria-label="aria-label4" aria-placeholder="aria-placehold er4" autofocus>
17 <input type="text" aria-label="aria-label5" aria-describedby="ariadesc5" ari a-placeholder="aria-placeholder5" placeholder="placeholder5" autofocus>
18 <div id="ariadesc5">aria-description5</div>
19 <input type="text" aria-placeholder="aria-placeholder6" title="title6" autof ocus>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698