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

Side by Side Diff: LayoutTests/fast/frames/resources/detach-frame-nested-subframe.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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <script>
4 function createXHR(url) {
5 var x = new XMLHttpRequest();
6 x.onabort = window.parent.removeFrame;
7 x.open('GET', url);
8 return x;
9 }
10
11 function runTest () {
12 var x1 = createXHR('resources/not-there.txt');
13 var x2 = createXHR('resources/not-there-either.txt');
14 x1.send();
15 x2.send();
16 }
17 window.onload = runTest;
18 </script>
19 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/frames/detach-frame-nested-no-crash-expected.txt ('k') | Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698