Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <title>An SVGImageElement not in the document loads the associated resource</tit le> | |
| 3 <script src="../../resources/testharness.js"></script> | |
| 4 <script src="../../resources/testharnessreport.js"></script> | |
| 5 <script> | |
| 6 async_test(function(t) { | |
| 7 let image = document.createElementNS('http://www.w3.org/2000/svg', 'image'); | |
| 8 image.onload = t.step_func_done(); | |
| 9 image.onerror = t.unreached_func(); | |
| 10 image.setAttribute('href', '../../images/resources/blue-100.png'); | |
| 11 }); | |
| 12 </script> | |
| OLD | NEW |