OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../js/resources/js-test-pre.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <p class="description"> | 7 <p class="description"> |
8 Tests that dispatchEvent raises DISPATCH_REQUEST_ERR if the event | 8 Tests that dispatchEvent raises DISPATCH_REQUEST_ERR if the event |
9 being dispatched is already being dispatched. | 9 being dispatched is already being dispatched. |
10 </p> | 10 </p> |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 shouldBeDispatchRequestErr(ex); | 70 shouldBeDispatchRequestErr(ex); |
71 } finally { | 71 } finally { |
72 delete redispatchLoad.dispatching; | 72 delete redispatchLoad.dispatching; |
73 } | 73 } |
74 | 74 |
75 finishJSTest(); | 75 finishJSTest(); |
76 } | 76 } |
77 | 77 |
78 window.addEventListener('load', redispatchLoad, true); | 78 window.addEventListener('load', redispatchLoad, true); |
79 </script> | 79 </script> |
80 <script src="../js/resources/js-test-post.js"></script> | |
81 </body> | 80 </body> |
82 </html> | 81 </html> |
OLD | NEW |