| <iframe id="iframe"></iframe> |
| <div id="div1"></div> |
| This test passes if it does not crash. |
| <div id="div2"></div> |
| <div id="div3"></div> |
| <embed id="embed"></embed> |
| <script> |
| try{embed.appendChild(null);}catch(e){} |
| iframe.animate([{"position":"fixed"}, {"position":"static"}], {duration: 1, fill: 'forwards'}); |
| div3.appendChild(div1); |
| if (window.testRunner) { |
| testRunner.waitUntilDone(); |
| testRunner.dumpAsText(); |
| requestAnimationFrame(function() { |
| document.documentElement.textContent = 'PASS'; |
| testRunner.notifyDone(); |
| }); |
| } |
| </script> |