| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <script src="../js/resources/js-test-pre.js"></script> | 5 <script src="../js/resources/js-test-pre.js"></script> |
| 6 </head> | 6 </head> |
| 7 <body> | 7 <body> |
| 8 <input id=target type=text value=""> | 8 <input id=target type=text value=""> |
| 9 <script> | 9 <script> |
| 10 description("An event's 'stop propagation', 'stop immediate propagation' and 'ca
nceled' flags should be unset in initEvent"); | 10 description("An event's 'stop propagation', 'stop immediate propagation' and 'ca
nceled' flags should be unset in initEvent"); |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 // This function will run if the propagation flags were reset properly on | 29 // This function will run if the propagation flags were reset properly on |
| 30 // the second call to initEvent. | 30 // the second call to initEvent. |
| 31 finishJSTest(); | 31 finishJSTest(); |
| 32 }, false); | 32 }, false); |
| 33 | 33 |
| 34 target.dispatchEvent(e); | 34 target.dispatchEvent(e); |
| 35 | 35 |
| 36 target.parentNode.removeChild(target); | 36 target.parentNode.removeChild(target); |
| 37 | 37 |
| 38 </script> | 38 </script> |
| 39 <script src="../js/resources/js-test-post.js"></script> | |
| 40 </body> | 39 </body> |
| 41 </html> | 40 </html> |
| OLD | NEW |