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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: content/test/data/accessibility/html/input-text-aria-placeholder.html
diff --git a/content/test/data/accessibility/html/input-text-aria-placeholder.html b/content/test/data/accessibility/html/input-text-aria-placeholder.html
new file mode 100644
index 0000000000000000000000000000000000000000..ca958e80b8187e8264b26dcfb5a74d1d52ebf42c
--- /dev/null
+++ b/content/test/data/accessibility/html/input-text-aria-placeholder.html
@@ -0,0 +1,21 @@
+<!--
+@MAC-ALLOW:AXRole*
+@MAC-ALLOW:AXDescription*
+@MAC-ALLOW:AXPlaceholder*
+@WIN-ALLOW:placeholder*
+@WIN-ALLOW:description*
+@BLINK-ALLOW:placeholder=*
+@BLINK-ALLOW:description=*
+-->
+<!DOCTYPE html>
+<html>
+ <body>
+ <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.
+ <input type="text" aria-placeholder="aria-placeholder2" placeholder="placeholder2" autofocus>
+ <input type="text" aria-label="aria-label3" aria-placeholder="aria-placeholder3" placeholder="placeholder3" autofocus>
+ <input type="text" aria-label="aria-label4" aria-placeholder="aria-placeholder4" autofocus>
+ <input type="text" aria-label="aria-label5" aria-describedby="ariadesc5" aria-placeholder="aria-placeholder5" placeholder="placeholder5" autofocus>
+ <div id="ariadesc5">aria-description5</div>
+ <input type="text" aria-placeholder="aria-placeholder6" title="title6" autofocus>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698