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

Unified Diff: LayoutTests/accessibility/inert-node-is-disabled.html

Issue 51743003: Treat inert nodes as aria-hidden instead of aria-disabled. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments 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 | « no previous file | LayoutTests/accessibility/inert-node-is-disabled-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | LayoutTests/accessibility/inert-node-is-disabled-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698