| Index: LayoutTests/accessibility/inert-node-is-disabled.html
|
| diff --git a/LayoutTests/accessibility/inert-node-is-disabled.html b/LayoutTests/accessibility/inert-node-is-disabled.html
|
| deleted file mode 100644
|
| index 644c49e28d33059b75328e36ff50096dd1029193..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/accessibility/inert-node-is-disabled.html
|
| +++ /dev/null
|
| @@ -1,26 +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">
|
| -<input id="input" type="text">
|
| -<p id="description"></p>
|
| -<div id="console"></div>
|
| -<dialog></dialog>
|
| -
|
| -<script>
|
| -description("This tests that inert elements are not enabled.");
|
| -
|
| -if (window.accessibilityController) {
|
| - textField = accessibilityController.accessibleElementById('input');
|
| - shouldBe("textField.isEnabled", "true");
|
| -
|
| - document.querySelector('dialog').showModal();
|
| - shouldBe("textField.isEnabled", "false");
|
| -}
|
| -</script>
|
| -
|
| -<script src="../fast/js/resources/js-test-post.js"></script>
|
| -</body>
|
| -</html>
|
|
|