| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script> | 2 <script> |
| 3 if (testRunner) { | 3 if (window.testRunner) { |
| 4 testRunner.dumpAsText(); | 4 testRunner.dumpAsText(); |
| 5 testRunner.waitUntilDone(); | 5 testRunner.waitUntilDone(); |
| 6 } | 6 } |
| 7 window.onload = function() { | 7 window.onload = function() { |
| 8 setTimeout(function() { | 8 setTimeout(function() { |
| 9 if (testRunner) | 9 if (window.testRunner) |
| 10 testRunner.notifyDone(); | 10 testRunner.notifyDone(); |
| 11 }, 500); | 11 }, 500); |
| 12 }; | 12 }; |
| 13 </script> | 13 </script> |
| 14 <img srcset="1x.gif 96w" onerror="console.log('Error triggerred');"> | 14 <img srcset="1x.gif 96w" onerror="console.log('Error triggerred');"> |
| OLD | NEW |