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

Unified Diff: LayoutTests/fast/dom/Window/BarInfo-after-frame-removed.html

Issue 131113003: Fix DOMWindow::isCurrentlyDisplayedInFrame to return false when detached (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix ScreenOrientation + test window.open. Created 6 years, 10 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/fast/dom/Window/BarInfo-after-frame-removed.html
diff --git a/LayoutTests/fast/dom/Window/BarInfo-after-frame-removed.html b/LayoutTests/fast/dom/Window/BarInfo-after-frame-removed.html
deleted file mode 100644
index 4f6773b4d7c4fe69e98db9d19a46b6e541f2376c..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/Window/BarInfo-after-frame-removed.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html>
-<head>
-<script>
-
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- function runTest()
- {
- if (window.testRunner)
- testRunner.notifyDone();
-
- var frame = document.getElementById("frame");
- var childWindow = frame.contentWindow;
- frame.parentNode.removeChild(frame);
- childWindow.toolbar.visible;
-
- document.getElementById("console").firstChild.data = "TEST RAN";
- }
-
-</script>
-</head>
-<body>
-
-<p>This tests accessing the visible property of a BarInfo after the relevant frame is no longer in a web page.
-If the test did not crash, it passed.<p>
-
-<pre id="console">TEST DID NOT RUN</pre>
-
-<iframe id="frame" src="about:blank" onload="runTest()">
-
-</body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Window/BarInfo-after-frame-removed-expected.txt » ('j') | Source/core/frame/DOMWindow.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698