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

Unified Diff: content/test/data/accessibility/aria/aria-current.html

Issue 1952863003: Implemented the "aria-current" state on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed switch statements to handle NONE case. Created 4 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/aria/aria-current.html
diff --git a/content/test/data/accessibility/aria/aria-current.html b/content/test/data/accessibility/aria/aria-current.html
new file mode 100644
index 0000000000000000000000000000000000000000..ea0eb34752d02da3400b4899df80689ce9f89333
--- /dev/null
+++ b/content/test/data/accessibility/aria/aria-current.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<!--
+@WIN-ALLOW:current:*
+-->
+<html>
+<body>
+ <a href="#section1">Section one</a>
+ <a href="#section2">Section two</a>
+ <a href="#section3" aria-current="location">Section three</a>
+ <br>
+ <h1 id="section1">Section one heading</h1>
+ <h1 id="section2">Section two heading</h1>
+ <h1 id="section3">Section three heading</h1>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698