Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <body> | |
| 3 <script> | |
| 4 if (window.testRunner) | |
| 5 testRunner.waitUntilDone(); | |
| 6 var img = new Image(); | |
| 7 img.onload = function() { | |
| 8 setTimeout(function() { | |
| 9 if (window.testRunner) | |
| 10 testRunner.notifyDone(); | |
| 11 }, 100); | |
| 12 } | |
| 13 img.src = "data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100 ' height='100'><rect width='100' height='100' fill='red'><animate attributeName= 'fill' from='green' to='green' dur='10s'/></rect></svg>"; | |
| 14 document.body.appendChild(img); | |
| 15 </script> | |
| OLD | NEW |