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

Unified Diff: content/test/data/accessibility/input-text-value.html

Issue 661393005: Accessible name of text fields on Android should prefer field value (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scroll_to_make_visible
Patch Set: Remove extra line on win Created 6 years, 2 months 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/input-text-value.html
diff --git a/content/test/data/accessibility/input-text-value.html b/content/test/data/accessibility/input-text-value.html
new file mode 100644
index 0000000000000000000000000000000000000000..d6f3697b1fea64f742f535b715e710bb7407145c
--- /dev/null
+++ b/content/test/data/accessibility/input-text-value.html
@@ -0,0 +1,23 @@
+<!--
+@WIN-ALLOW:description*
+-->
+<html>
+<body>
+ <label for="i1">l1</label>
+ <input id="i1">
+ <label for="i2">l2</label>
+ <input id="i2" value="value">
+
+ <input aria-label="l2">
+ <input aria-label="l2" value="value">
+
+ <label id="l3">Email</label>
+ <span id="l4"></span>
+ <input aria-labelledby="l3 42">
+ <input aria-labelledby="l3 l4" value="value">
+
+ <textarea aria-label="l5"></textarea>
+ <textarea aria-label="l6">Value</textarea>
+
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698