005.html (364B)
1 <!doctype html> 2 <title>document.open in pagehide in iframe</title> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <div id="log"></div> 6 <script> 7 var t = async_test(); 8 var win; 9 10 t.step(function() { 11 win = window.open("support/005-1.html"); 12 }); 13 14 add_completion_callback(function() {win.close()}); 15 </script>