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

Unified Diff: LayoutTests/accessibility/iframe-bastardization.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
Index: LayoutTests/accessibility/iframe-bastardization.html
diff --git a/LayoutTests/accessibility/iframe-bastardization.html b/LayoutTests/accessibility/iframe-bastardization.html
deleted file mode 100644
index 041f9e046e3d2c1e898c2c0a919f0b329a2b7e69..0000000000000000000000000000000000000000
--- a/LayoutTests/accessibility/iframe-bastardization.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<head>
-<script src="../fast/js/resources/js-test-pre.js"></script>
-</head>
-<body id="body">
-
- <iframe id='iframe1' scrolling=YES width=100 height=100 border=1 src='resources/cake.png'></iframe>
-
-<p id="description"></p>
-<div id="console"></div>
-
-<script>
-
- description("This test makes sure that the AX parent chain hierarchy with iframes is correct");
-
- if (window.accessibilityController) {
-
- var body = document.getElementById("body");
- body.focus();
- var webArea = accessibilityController.focusedElement;
-
- var group1 = webArea.childAtIndex(0);
- var iframeScrollArea = group1.childAtIndex(0);
- var iframeWebArea = iframeScrollArea.childAtIndex(0);
-
- var parentIframeWebArea = iframeWebArea.parentElement();
- var parentIframeScrollArea = parentIframeWebArea.parentElement();
- var parentGroup1 = parentIframeScrollArea.parentElement();
-
- shouldBe("parentIframeWebArea.isEqual(iframeScrollArea)", "true");
- shouldBe("parentIframeScrollArea.isEqual(group1)", "true");
- shouldBe("parentGroup1.isEqual(webArea)", "true");
- }
-
-</script>
-
-<script src="../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698