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

Unified Diff: content/test/data/accessibility/select.html

Issue 11823026: Adding some new DumpAccessibilityTree tests, tweaking DumpAccessibilityTree helpers and fixing a bug (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix valueNow -> currentValue Created 7 years, 11 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/select.html
diff --git a/content/test/data/accessibility/select.html b/content/test/data/accessibility/select.html
new file mode 100644
index 0000000000000000000000000000000000000000..d45679caf97f0d92c426c362553341feeb82c94e
--- /dev/null
+++ b/content/test/data/accessibility/select.html
@@ -0,0 +1,25 @@
+<!--
+@MAC-ALLOW:roleDescription=*
+@MAC-DENY:title=''
+@MAC-DENY:value=''
+@WIN-DENY:name=''
+-->
+<html>
+<body>
+ <select id="A" name="Select A">
+ <option value="">Placeholder option</option>
+ <option value="1">Option 1</option>
+ <option value="2">Option 2</option>
+ </select>
+ <select id="B" name="Select B">
+ <option value="1">Option 1</option>
+ <option value="2" selected>Option 2</option>
+ <option value="3">Option 3</option>
+ </select>
+ <select id="B" name="Select C" requried>
+ <option value="1">Option 1</option>
+ <option value="2">Option 2</option>
+ <option value="3">Option 3</option>
+ </select>
+</body>
+</html>
« no previous file with comments | « content/test/data/accessibility/input-range-expected-win.txt ('k') | content/test/data/accessibility/select-expected-mac.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698