| OLD | NEW |
| 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> |
| OLD | NEW |