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

Side by Side Diff: LayoutTests/http/tests/appcache/resources/deferred-events-delete-while-raising-timer-1.html

Issue 9370044: Merge 107023 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 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 manifest="THIS_FILE_DOES_NOT_EXIST.manifest"> 1 <html manifest="THIS_FILE_DOES_NOT_EXIST.manifest">
2 <script src="THIS_FILE_DOES_NOT_EXIST.js"></script> 2 <script src="THIS_FILE_DOES_NOT_EXIST.js"></script>
3 <script> 3 <script>
4 window.applicationCache.onchecking = function() { 4 window.applicationCache.onchecking = function() {
5 parent.postMessage("hello", "*"); 5 parent.postMessage("hello", "*");
6 parent.killChildFrame(); 6 parent.killChildFrame();
7 } 7 }
8 8
9 function killChildFrame() { 9 function killChildFrame() {
10 document.body.removeChild(document.getElementsByTagName("iframe")[0]); 10 document.body.removeChild(document.getElementsByTagName("iframe")[0]);
11 } 11 }
12 </script> 12 </script>
13 <iframe src="deferred-events-delete-while-raising-timer-2.html"></iframe> 13 <iframe src="deferred-events-delete-while-raising-timer-2.html"></iframe>
14 </html> 14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698