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

Side by Side Diff: content/test/data/accessibility/aria/input-text-aria-placeholder.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
(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">
14 <input type="text" aria-placeholder="aria-placeholder2" placeholder="placeho lder2">
15 <input type="text" aria-label="aria-label3" aria-placeholder="aria-placehold er3" placeholder="placeholder3">
16 <input type="text" aria-label="aria-label4" aria-placeholder="aria-placehold er4">
17 <input type="text" aria-label="aria-label5" aria-describedby="ariadesc5" ari a-placeholder="aria-placeholder5" placeholder="placeholder5">
18 <div id="ariadesc5">aria-description5</div>
19 <input type="text" aria-placeholder="aria-placeholder6" title="title6">
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698