| 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>
|
|
|