Chromium Code Reviews| OLD | NEW | 
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src="../../../resources/js-test.js"></script> | |
| 3 <script> | |
| 4 description("Invalid img.srcset URL should not crash"); | |
| 5 window.jsTestIsAsync = true; | |
| 6 if (testRunner) { | |
| 7 testRunner.dumpAsText(); | |
| 8 testRunner.waitUntilDone(); | |
| 9 } | |
| 10 function done() { | |
| 11 testPassed("no crash."); | |
| 12 finishJSTest(); | |
| 13 } | |
| 14 </script> | |
| 15 <img src="1x.png" srcset="//&%dE,; 1.2x" onerror="done()"> | |
| OLD | NEW |