Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / css / path-layout-crash.html
blob5069af934151e8c057f4586dae369aa033945c17
1 <!DOCTYPE HTML>
2 <style></style>
3 This test passes if it does not crash<br>
4 <svg id="svg" style="position: absolute;">
5 <path class="c3"></path>
6 </svg>
7 <svg>
8 <use xlink:href="#svg"></use>
9 </svg>
10 <script>
11 if (window.testRunner) {
12 testRunner.waitUntilDone();
13 testRunner.dumpAsText();
15 onload = function() {
16 document.body.offsetTop;
17 document.styleSheets[0].insertRule('.c3 { border: 5px solid red; } ', '.c3');
18 if (window.testRunner)
19 testRunner.notifyDone();
21 </script>