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

Side by Side Diff: LayoutTests/fast/frames/detach-frame-nested-no-crash.html

Issue 923363002: Gracefully handle nested frame detaches. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/frames/detach-frame-nested-no-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <script src="../../resources/js-test.js"></script>
4 <script>
5 description("Verifies that nested frame detach does not crash.");
6
7 if (window.testRunner)
8 testRunner.dumpAsText();
9
10 var count = 0;
11 function removeFrame() {
12 document.body.removeChild(document.getElementById("frame"));
13 if (++count == 2)
14 testRunner.notifyDone();
15 }
16 </script>
17 <iframe id="frame" src="resources/detach-frame-nested-subframe.html"></iframe>
18 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/frames/detach-frame-nested-no-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698