OLD | NEW |
1 <pre></pre> | 1 <pre></pre> |
2 This test passes if it does not crash. | 2 This test passes if it does not crash. |
3 <textarea></textarea> | 3 <textarea></textarea> |
4 <ul></ul> | 4 <ul></ul> |
5 <embed> | 5 <embed> |
6 <script> | 6 <script> |
7 $ = document.querySelector.bind(document); | 7 $ = document.querySelector.bind(document); |
8 $('embed').animate([], 0); | 8 $('embed').animate([], 0); |
9 $('ul').remove(); | 9 $('ul').remove(); |
10 $('textarea').animate([{float: 'left'}, {float: 'left'}], {duration: 1, fill: 'f
orwards'}); | 10 $('textarea').animate([{float: 'left'}, {float: 'left'}], {duration: 1, fill: 'f
orwards'}); |
11 if (window.testRunner) { | 11 if (window.testRunner) { |
12 testRunner.waitUntilDone(); | 12 testRunner.waitUntilDone(); |
13 testRunner.dumpAsText(); | 13 testRunner.dumpAsText(); |
14 requestAnimationFrame(function() { | 14 requestAnimationFrame(function() { |
15 testRunner.notifyDone(); | 15 testRunner.notifyDone(); |
16 }); | 16 }); |
17 } | 17 } |
18 </script> | 18 </script> |
OLD | NEW |