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

Unified Diff: LayoutTests/accessibility/image-map-update-parent-crash.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/image-map-update-parent-crash.html
diff --git a/LayoutTests/accessibility/image-map-update-parent-crash.html b/LayoutTests/accessibility/image-map-update-parent-crash.html
deleted file mode 100644
index 5798fdb40f88d64262eed8d4867114c88786a6bf..0000000000000000000000000000000000000000
--- a/LayoutTests/accessibility/image-map-update-parent-crash.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<html>
-<head>
-<script src="../fast/js/resources/js-test-pre.js"></script>
-
-<script>
-
-if (window.testRunner)
- testRunner.waitUntilDone();
-
-function buildAccessibilityTree(accessibilityObject, indent) {
- var count = accessibilityObject.childrenCount;
- for (var i = 0; i < count; ++i) {
- if (!buildAccessibilityTree(accessibilityObject.childAtIndex(i), indent + 1))
- return false;
- }
-
- return true;
-}
-
-function runAXTest() {
-
-
- description("This tests that an image map's hold on it's parent will be cleared if the parent goes away.");
-
- // First access all children using AX
- buildAccessibilityTree(accessibilityController.rootElement, 0);
-
- var child = document.getElementById('img'); child.parentNode.removeChild(child);
-
- // Now verify we haven't crashed.
- buildAccessibilityTree(accessibilityController.rootElement, 0);
-
- if (window.testRunner)
- testRunner.notifyDone();
-}
-</script>
-
-</head>
-<body>
-
-<map name="map">
-<div id="o7"></div>
-<area id="o20" href="#"></area></map>
-
-<img id="img" usemap="#map"><span></span>
-
-<script>setTimeout("runAXTest();", 1);</script>
-
-<p id="description"></p>
-<div id="console"></div>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698