Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <title>SVGScriptElement.href should not be animatable</title> | |
| 3 <script src="../../resources/testharness.js"></script> | |
| 4 <script src="../../resources/testharnessreport.js"></script> | |
| 5 <script> | |
| 6 var foo = 42; | |
| 7 | |
| 8 async_test(t => { | |
| 9 window.onload = () => { | |
| 10 var s = document.createElementNS('http://www.w3.org/2000/svg', 'script'); | |
| 11 s.onload = t.unreached_func('Should not get a load event'); | |
| 12 s.id = 'x'; | |
| 13 document.querySelector('svg').appendChild(s); | |
| 14 requestAnimationFrame(_ => { | |
| 15 requestAnimationFrame(t.step_func_done(_ => { | |
|
Mike West
2017/01/09 19:31:19
Why two frames? I'll defer to y'all with regard to
fs
2017/01/10 10:15:16
This is a bit of a frailty with the test I'm afrai
| |
| 16 assert_equals(foo, 42); | |
| 17 })); | |
| 18 }); | |
| 19 }; | |
| 20 }); | |
| 21 </script> | |
| 22 <svg> | |
| 23 <rect width="100" height="100" fill="green"/> | |
| 24 <set href="#x" attributeName="href" to="resources/set-foo.js"/> | |
|
Mike West
2017/01/09 19:31:19
Would you mind adding a similar test for `<animate
fs
2017/01/10 10:15:16
I can do that.
| |
| 25 </svg> | |
| OLD | NEW |