Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / smil-in-shadow-tree-crash.html
blob2db3d6b39aa0f9a9a4e46825865a3eeb47c88035
1 <!DOCTYPE html>
2 <html>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
7 function start() {
8 iFrame = document.createElement('iframe');
9 document.getElementById('store_div').appendChild(iFrame);
10 shadowRoot = document.getElementById('rootDiv').createShadowRoot();
11 svgRoot = iFrame.contentDocument.createElementNS('http://www.w3.org/2000/svg','set');
12 shadowRoot.appendChild(svgRoot);
14 </script>
15 <body onload="start()">
16 <div id="rootDiv">
17 <div id="store_div"></div>
18 </div>
19 <p>Test PASSES if it does not assert in debug builds.</p>
20 </body>
21 </html>