OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <div id="target">This test passes if it does not crash.</div> | |
3 <script> | |
4 target.animate([ | |
5 {fontSize: 'large', fontWeight: 'normal'}, | |
6 {fontSize: 'small', fontWeight: 'bold'}, | |
7 ], 1); | |
8 if (window.testRunner) { | |
9 testRunner.dumpAsText(); | |
10 testRunner.waitUntilDone(); | |
11 } | |
12 requestAnimationFrame(function() { | |
13 testRunner.notifyDone(); | |
14 }); | |
15 </script> | |
OLD | NEW |