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

Unified Diff: content/test/data/accessibility/html/action-verbs.html

Issue 1809573003: Fix support for accessible action verbs and performing the default action. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix two tests Created 4 years, 9 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/action-verbs.html
diff --git a/content/test/data/accessibility/html/action-verbs.html b/content/test/data/accessibility/html/action-verbs.html
new file mode 100644
index 0000000000000000000000000000000000000000..f84cb09018266f08577d0e97f429350dfaf350e3
--- /dev/null
+++ b/content/test/data/accessibility/html/action-verbs.html
@@ -0,0 +1,22 @@
+<!--
+@BLINK-ALLOW:action*
+-->
+<!doctype html>
+<html>
+<head>
+ <title>Action verbs</title>
+</head>
+<body>
+ <div>Generic div</div>
+ <h1>Heading</h1>
+ <button>Button</button>
+ <a href="#">Link</a>
+ <input>
+ <input type=checkbox>
+ <input type=checkbox checked>
+ <input type=radio>
+ <div tabIndex=0 role="switch">ARIA Switch</div>
+ <select><option>Pop-up button</select>
+ <div onclick="alert('success');">Div with click handler</div>
+</body>
+</html>
« no previous file with comments | « content/child/blink_platform_impl.cc ('k') | content/test/data/accessibility/html/action-verbs-expected-blink.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698