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