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

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

Issue 815463006: Separating ARIA, HTML & event AX test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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-level.html
diff --git a/content/test/data/accessibility/aria-level.html b/content/test/data/accessibility/aria-level.html
deleted file mode 100644
index 89bacc2019fc1b7fd774b494b0c5b4c90d70921b..0000000000000000000000000000000000000000
--- a/content/test/data/accessibility/aria-level.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!--
-@MAC-ALLOW:AXSubrole=AXOutlineRow
-@MAC-ALLOW:AXDisclosing*
-@MAC-ALLOW:AXDisclosureLevel*
-@WIN-ALLOW:level:*
-@WIN-ALLOW:EXPANDED
-@WIN-DENY:name=''
--->
-<!DOCTYPE html>
-<html>
-<body>
-
-<h1 aria-level="2">Level 2</h1>
-<h2 aria-level="9">Level 9</h2>
-<h1 aria-level="20">Level 1</h1>
-<h3>Level 3</h3>
-
-<div role="heading" aria-level="3">Level 3</div>
-<h2 role="heading" aria-level="4">Level 4</h2>
-<h5 role="heading">Level 5</h5>
-
-<div role="tree">
- <div role="treeitem" aria-expanded="true">
- Tree item at level 1
- <div role="group">
- <div role="treeitem">Tree item at level 2</div>
- </div>
- </div>
- <div role="treeitem" aria-level="3">
- Tree item at level 3
- </div>
-</div>
-
-<table role="treegrid">
- <tr role="row" aria-level="1">
- <td role="gridcell">Cell at level 1</td>
- </tr>
- <tr role="row" aria-level="2">
- <td role="gridcell">Cell at level 2</td>
- </tr>
-</table>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698