| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../../resources/js-test.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <dialog> | 7 <dialog> |
| 8 <content></content> | 8 <content></content> |
| 9 </dialog> | 9 </dialog> |
| 10 <div id="host"> | 10 <div id="host"> |
| 11 <button>Click me</button> | 11 <button>Click me</button> |
| 12 </div> | 12 </div> |
| 13 <script> | 13 <script> |
| 14 function clickOn(element) | 14 function clickOn(element) |
| (...skipping 19 matching lines...) Expand all Loading... |
| 34 if (event.target == button) | 34 if (event.target == button) |
| 35 testPassed('button was clicked'); | 35 testPassed('button was clicked'); |
| 36 else | 36 else |
| 37 testFailed('button was not clicked'); | 37 testFailed('button was not clicked'); |
| 38 finishJSTest(); | 38 finishJSTest(); |
| 39 }); | 39 }); |
| 40 clickOn(button); | 40 clickOn(button); |
| 41 </script> | 41 </script> |
| 42 </body> | 42 </body> |
| 43 </html> | 43 </html> |
| OLD | NEW |