Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / mutation-text-transform-crash.html
blob0d26e6296e88e853a4ec326e562dbec9bfac063a
1 <html>
2 <!-- This test passes if there is no crash or assert -->
3 <style>
4 text { text-transform: uppercase; }
5 </style>
6 <script>
7 function testCrash() {
8 document.body.offsetWidth;
9 var test = document.getElementById('test');
10 test.removeChild(test.firstChild);
11 var textNode = document.createTextNode("PASS");
12 test.appendChild(textNode);
15 if (window.testRunner)
16 testRunner.dumpAsText();
17 </script>
18 <body onload="testCrash()">
19 <svg>
20 <text id="test" x="0" y="15">FAIL</text>
21 </svg>
22 </body>
23 </html>