Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / style / fix-range-from-root-editable-crash.html
blobf64b3538ebfa6325ece48fd1a2db9bf649600b9d
1 <html>
2 <head>
3 <script>
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 testRunner.waitUntilDone();
10 function go() {
11 document.designMode = "on";
12 document.execCommand("SelectAll", false, null);
13 document.execCommand("strikethrough", false, null);
14 document.body.innerHTML = 'This tests ApplyStyleCommand::fixRangeAndApplyInlineStyle does not crash when startNode is body.<br>PASS';
15 testRunner.notifyDone();
17 </script>
18 </head>
19 <body onload="go()"><div><img></div></body>
20 </html>