Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / animate-inactivedocument.html
blob79424d9bd8235f72ad8a805ea05865d5c66c6e66
1 <body>
2 <script src="../../resources/js-test.js"></script>
3 <svg xmlns="http://www.w3.org/2000/svg">
4 <set attributeName="stroke-width">
5 <script>
6 jsTestIsAsync = true;
7 setTimeout(function() {
8 svgdoc = document.implementation.createDocument("http://www.w3.org/2000/svg", "svg", null);
9 svgdoc.documentElement.appendChild(document.querySelector("body"));
10 debug("PASS: if the test doesn't crash.");
11 finishJSTest();
12 }, 0);
13 </script>