| 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 <dialog> | 7 <dialog> |
| 8 <form method="dialog"> | 8 <form method="dialog"> |
| 9 <input id="goodbye" type="submit" value="Goodbye"> | 9 <input id="goodbye" type="submit" value="Goodbye"> |
| 10 <input id="hello" type="submit" value="Hello"> | 10 <input id="hello" type="submit" value="Hello"> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 if (window.testRunner) | 36 if (window.testRunner) |
| 37 testRunner.notifyDone(); | 37 testRunner.notifyDone(); |
| 38 }); | 38 }); |
| 39 document.querySelector('#hello').click(); | 39 document.querySelector('#hello').click(); |
| 40 } | 40 } |
| 41 | 41 |
| 42 if (window.testRunner) | 42 if (window.testRunner) |
| 43 testRunner.waitUntilDone(); | 43 testRunner.waitUntilDone(); |
| 44 testGoodbye(); | 44 testGoodbye(); |
| 45 </script> | 45 </script> |
| 46 <script src="../../js/resources/js-test-post.js"></script> | |
| 47 </body> | 46 </body> |
| 48 </html> | 47 </html> |
| OLD | NEW |