Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / web-animations-api / element-animate-float-crash.html
1 <pre></pre>
2 This test passes if it does not crash.
3 <textarea></textarea>
4 <ul></ul>
5 <embed>
6 <script>
7 $ = document.querySelector.bind(document);
8 $('embed').animate([], 0);
9 $('ul').remove();
10 $('textarea').animate([{float: 'left'}, {float: 'left'}], {duration: 1, fill: 'forwards'});
11 if (window.testRunner) {
12   testRunner.waitUntilDone();
13   testRunner.dumpAsText();
14   requestAnimationFrame(function() {
15     testRunner.notifyDone();
16   });
17 }
18 </script>