Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / cssanimation-inactivedocument-crash.html
blobb0abdefb08797635b8a5666f19049bd500189d07
1 <svg id="svg" xmlns="http://www.w3.org/2000/svg">
2 <animate id="animate" attributeName="fill">
3 </svg>
4 <script>
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 testRunner.waitUntilDone();
10 requestAnimationFrame(function() {
11 var doc = document.implementation.createDocument("http://www.w3.org/1999/xhtml", "html");
12 var svg = document.getElementById("svg");
13 doc.childNodes[0].appendChild(svg);
14 if (window.testRunner)
15 testRunner.notifyDone();
16 });
17 </script>
18 PASS: if the test doesn't crash.