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

Side by Side Diff: LayoutTests/http/tests/misc/resources/delete-frame-during-readystatechange-frame.html

Issue 12318023: Merge 143514 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
Patch Set: Created 7 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
1 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 i = 0; 4 i = 0;
5 document.addEventListener('readystatechange', function() { 5 document.addEventListener('readystatechange', function() {
6 if (i == 1) 6 if (i == 1)
7 parent.r(); 7 parent.r();
8 i++; 8 i++;
9 }); 9 });
10 10
11 window.addEventListener('DOMContentLoaded', function() { 11 window.addEventListener('DOMContentLoaded', function() {
12 document.getElementById("v").load(); 12 document.getElementById("v").load();
13 document.body.removeChild(document.getElementById("v")); 13 document.body.removeChild(document.getElementById("v"));
14 }); 14 });
15 15
16 </script> 16 </script>
17 </head> 17 </head>
18 <body> 18 <body>
19 <video id=v src=empty.ogv></video> 19 <video id=v src=empty.ogv></video>
20 </body> 20 </body>
21 </html> 21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698