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

Unified Diff: LayoutTests/accessibility/aria-combobox.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
« no previous file with comments | « LayoutTests/accessibility/aria-checkbox-text.html ('k') | LayoutTests/accessibility/aria-invalid.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/accessibility/aria-combobox.html
diff --git a/LayoutTests/accessibility/aria-combobox.html b/LayoutTests/accessibility/aria-combobox.html
deleted file mode 100644
index 19b5063483c1e7bf5dd13e800293a71e4a333875..0000000000000000000000000000000000000000
--- a/LayoutTests/accessibility/aria-combobox.html
+++ /dev/null
@@ -1,46 +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 id="combo" tabindex=0 role="combobox" aria-expanded="false" aria-label="Test">
-<div role="listbox">
-<div role="option">option 1</div>
-<div role="option">option 2</div>
-</div>
-</div>
-
-
-<p id="description"></p>
-<div id="console"></div>
-
-<script>
-
- description("This tests that the aria roles for combobox and aria-expanded work correctly in conjunction.");
-
- if (window.accessibilityController) {
-
- var combobox = document.getElementById("combo");
- combobox.focus();
-
- combobox = accessibilityController.focusedElement;
-
- debug("Role: " + combobox.role);
- shouldBe("combobox.isExpanded", "false");
-
- combobox.showMenu();
-
- // As of now, the isExpanded value won't be updated through an AX call.
- shouldBe("combobox.isExpanded", "false");
-
- var firstChild = combobox.childAtIndex(0);
- debug("Role: " + firstChild.role);
- }
-
-</script>
-
-<script src="../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>
« no previous file with comments | « LayoutTests/accessibility/aria-checkbox-text.html ('k') | LayoutTests/accessibility/aria-invalid.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698