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

Unified Diff: LayoutTests/accessibility/aria-checkbox-text.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 2 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/accessibility/aria-checkbox-text.html
diff --git a/LayoutTests/accessibility/aria-checkbox-text.html b/LayoutTests/accessibility/aria-checkbox-text.html
deleted file mode 100644
index 8ab7b566c2893ef0f754073e92ed651d53a58326..0000000000000000000000000000000000000000
--- a/LayoutTests/accessibility/aria-checkbox-text.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<script src="../fast/js/resources/js-test-pre.js"></script>
-</head>
-<body id="body">
-
-<div role="radiobuttongroup">
- <div role="checkbox" id="check1" tabindex="0" aria-checked="true">One</div>
- <div role="checkbox" id="check2" tabindex="0">Two</div>
- <div role="checkbox" id="check3" tabindex="0" id="foo" aria-labelledby="foo">Three</div>
-</div>
-
-<p id="description"></p>
-<div id="console"></div>
-
-<script>
-
- description("This tests that ARIA checkboxes use accessible name computation.");
-
- if (window.accessibilityController) {
-
- var checkbox = document.getElementById("check1");
- checkbox.focus();
- checkbox = accessibilityController.focusedElement;
- shouldBe("checkbox.title", "'AXTitle: One'");
-
- checkbox = document.getElementById("check2");
- checkbox.focus();
- checkbox = accessibilityController.focusedElement;
- shouldBe("checkbox.title", "'AXTitle: Two'");
-
- checkbox = document.getElementById("check3");
- checkbox.focus();
- checkbox = accessibilityController.focusedElement;
- shouldBe("checkbox.title", "'AXTitle: Three'");
- }
-
-</script>
-
-<script src="../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>
« no previous file with comments | « LayoutTests/accessibility/aria-activedescendant-crash-expected.txt ('k') | LayoutTests/accessibility/aria-combobox.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698