Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / animate-image-href.html
blobb306baa60c8658a0e86b997758253a630d3f772c
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <script>
5 function runTest() {
6 if (window.testRunner)
7 testRunner.waitUntilDone();
9 // Wait for the animation to run 1 frame, then stop.
10 setTimeout(function() {
11 if (window.testRunner)
12 testRunner.notifyDone();
13 }, 0);
15 </script>
16 </head>
17 <body onload="runTest()">
18 Test for crbug.com/279445: SVG image href should be animatable.<br/>
19 This test passes if there is a green square below.<br/>
20 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100" height="100">
21 <image x="0" y="0" width="100" height="100" xlink:href="">
22 <set attributeName="xlink:href" to="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTAwJyBoZWlnaHQ9JzEwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cmVjdCBmaWxsPSdncmVlbicgd2lkdGg9JzEwMCcgaGVpZ2h0PScxMDAnPjwvcmVjdD48L3N2Zz4=" begin="0s" />
23 </image>
24 </svg>
25 </body>
26 </html>