| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 div { background: url(#); } | 3 div { background: url(#); } |
| 4 div { background: -webkit-image-set(url(#) 1x); } | 4 div { background: -webkit-image-set(url(#) 1x); } |
| 5 </style> | 5 </style> |
| 6 <div style="transition: 1s">This test passes if it does not crash.</div> | 6 <div style="transition: 1s">This test passes if it does not crash.</div> |
| 7 <script> | 7 <script> |
| 8 if (window.testRunner) { | 8 if (window.testRunner) { |
| 9 testRunner.dumpAsText(); | 9 testRunner.dumpAsText(); |
| 10 testRunner.waitUntilDone(); | 10 testRunner.waitUntilDone(); |
| 11 } | 11 } |
| 12 window.addEventListener('load', function() { | 12 window.addEventListener('load', function() { |
| 13 document.styleSheets[0].deleteRule(1); | 13 document.styleSheets[0].deleteRule(1); |
| 14 if (window.testRunner) { | 14 if (window.testRunner) { |
| 15 testRunner.notifyDone(); | 15 testRunner.notifyDone(); |
| 16 } | 16 } |
| 17 }); | 17 }); |
| 18 </script> | 18 </script> |
| OLD | NEW |