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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/Window/property-access-in-closure-after-navigation.html

Issue 1374533002: Null out LocalDOMWindow::m_frame on navigation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: try to fix crash-on-querying-event-path.html Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 <script>
6 var jsTestIsAsync = true;
7 description('Test that an inner global captured in a closure acts as if its crea ting context is detached when the creating context is navigated.');
8
9 var loadCount = 0;
10 function maybeFinishTest()
11 {
12 if (++loadCount < 2)
13 return;
14
15 savedClosure();
16 if (window.testRunner)
17 testRunner.notifyDone();
18 }
19 </script>
20 </head>
21 <body>
22 <iframe src="resources/property-access-in-closure-after-navigation-child.html" o nload="maybeFinishTest()"></iframe>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698