historical.html (389B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <title>CloseEvent: historical initialization</title> 4 <script src=/resources/testharness.js></script> 5 <script src=/resources/testharnessreport.js></script> 6 <div id=log></div> 7 <script> 8 test(function() { 9 assert_false("initCloseEvent" in CloseEvent.prototype); 10 assert_false("initCloseEvent" in new CloseEvent('close')); 11 }, "initCloseEvent"); 12 </script>