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

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

Issue 2799413002: Views a11y: Add AXNodeData.actions bitfield to indicate supported actions by UI. (Closed)
Patch Set: Fix tests broken from rebase. Created 3 years, 7 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/html/actions.html
diff --git a/content/test/data/accessibility/html/actions.html b/content/test/data/accessibility/html/actions.html
new file mode 100644
index 0000000000000000000000000000000000000000..391f77d806b601423f62b2442649f1c1930d65de
--- /dev/null
+++ b/content/test/data/accessibility/html/actions.html
@@ -0,0 +1,20 @@
+<!--
+@BLINK-ALLOW:actions*
+-->
+<!doctype html>
+<html>
+<head>
+ <title>Actions</title>
+</head>
+<body>
+ <input role="slider" type="range"
+ min="1"
+ max="100"
+ value="50"
+ step="1"
+ aria-valuemin="1"
+ aria-valuemax="100"
+ aria-valuenow="50">
+ <input type="text" placeholder="Test textfield">
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698