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

Side by Side Diff: LayoutTests/fast/frames/unload-reparent-sibling-frame.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 4
5 <div id="container"> 5 <div id="container">
6 <div id="inside"> 6 <div id="inside">
7 <iframe id="frame1" srcdoc="frame1"></iframe> 7 <iframe id="frame1" srcdoc="frame1"></iframe>
8 <iframe id="frame2" srcdoc="frame2"></iframe> 8 <iframe id="frame2" srcdoc="frame2"></iframe>
9 </div> 9 </div>
10 </div> 10 </div>
11 11
12 <script> 12 <script>
13 description('Reparented sibling frames from unload handlers should load.'); 13 description('Reparented sibling frames from unload handlers should load.');
(...skipping 29 matching lines...) Expand all
43 frame1.contentWindow.onunload = function() { 43 frame1.contentWindow.onunload = function() {
44 frame1.onload = runTest; 44 frame1.onload = runTest;
45 frame2.onload = runTest; 45 frame2.onload = runTest;
46 document.body.appendChild(inside); 46 document.body.appendChild(inside);
47 }; 47 };
48 48
49 container.parentNode.removeChild(container); 49 container.parentNode.removeChild(container);
50 }; 50 };
51 </script> 51 </script>
52 52
OLDNEW
« no previous file with comments | « LayoutTests/fast/frames/set-iframe-src-in-pagehide-crash.html ('k') | LayoutTests/fast/gradients/css3-gradient-parsing.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698