Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / apply-style-text-decoration-crash.html
blob6f48c627c2962f6d462adea0f4f9ede13f3faf77
1 <html>
2 <script>
3 function runTest()
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 window.getSelection().setBaseAndExtent(start, 0, null, 0);
9 document.execCommand("Indent");
10 document.getElementById("result").innerHTML = "PASS";
12 </script>
13 <body onLoad="runTest();">
14 <p id="result"></p>
15 <div contenteditable="true" id="start" style="text-decoration: none;">
16 <hr style="text-align: right;"/>
17 </div>
18 </body>
19 </html>