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

Unified 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, 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/aria/input-text-aria-placeholder.html
diff --git a/content/test/data/accessibility/aria/input-text-aria-placeholder.html b/content/test/data/accessibility/aria/input-text-aria-placeholder.html
new file mode 100644
index 0000000000000000000000000000000000000000..cf985a4e99bbc8bca7f83e16da1362a3b97569cb
--- /dev/null
+++ b/content/test/data/accessibility/aria/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">
+ <input type="text" aria-placeholder="aria-placeholder2" placeholder="placeholder2">
+ <input type="text" aria-label="aria-label3" aria-placeholder="aria-placeholder3" placeholder="placeholder3">
+ <input type="text" aria-label="aria-label4" aria-placeholder="aria-placeholder4">
+ <input type="text" aria-label="aria-label5" aria-describedby="ariadesc5" aria-placeholder="aria-placeholder5" placeholder="placeholder5">
+ <div id="ariadesc5">aria-description5</div>
+ <input type="text" aria-placeholder="aria-placeholder6" title="title6">
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698