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

Unified Diff: LayoutTests/platform/chromium/accessibility/chromium-only-roles.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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: LayoutTests/platform/chromium/accessibility/chromium-only-roles.html
diff --git a/LayoutTests/platform/chromium/accessibility/chromium-only-roles.html b/LayoutTests/platform/chromium/accessibility/chromium-only-roles.html
deleted file mode 100644
index 14cab481a9978ea7369dbb77eeb4af28b7c475da..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/accessibility/chromium-only-roles.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<body>
-<script src="../../../fast/js/resources/js-test-pre.js"></script>
-
-<div id="container" contentEditable>
- <hr aria-label="hr">
- <p aria-label="p"></p>
- <label aria-label="label"></label>
- <form aria-label="form"></form>
- <div aria-label="div"></div>
-</div>
-
-<div id="console"></div>
-<script>
-description("This test makes sure that a generic focusable div can get accessibility focus.");
-
-if (window.testRunner && window.accessibilityController) {
- window.testRunner.dumpAsText();
-
- document.getElementById('container').focus();
- var axContainer = accessibilityController.focusedElement;
-
- shouldBe('axContainer.childAtIndex(0).role', '"AXRole: AXHorizontalRule"');
- shouldBe('axContainer.childAtIndex(1).role', '"AXRole: AXParagraph"');
- shouldBe('axContainer.childAtIndex(2).role', '"AXRole: AXLabel"');
- shouldBe('axContainer.childAtIndex(3).role', '"AXRole: AXForm"');
- shouldBe('axContainer.childAtIndex(4).role', '"AXRole: AXDiv"');
-}
-
-</script>
-
-<script src="../../../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698