Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <p>Passes if no alert() is displayed</p> | |
| 3 <script> | |
| 4 if (window.testRunner) { | |
| 5 testRunner.dumpAsText(); | |
| 6 testRunner.waitUntilDone(); | |
| 7 } | |
| 8 | |
| 9 new Promise(function(res, rej) { res(); }).then(function() { | |
| 10 alert('this should not be shown'); | |
| 11 if (window.testRunner) | |
| 12 testRunner.notifyDone(); | |
| 13 }); | |
| 14 </script> | |
| OLD | NEW |