Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / 25320.html
blob48c6b9137d117e2dc263fb2f4b5fc084dad0e3b6
1 <html>
2 <head>
3 <script>
4 function runTest() {
5 if (window.testRunner)
6 testRunner.dumpAsText();
7 document.body.focus();
8 document.execCommand("JustifyCenter");
9 document.body.innerText = "This tests for a crash when doing a block style change inside an editable root that contains rendered, but invisible content. This test shouldn't crash and the text-align:center should go onto a new paragraph element, not the body." + "\n\n" + document.body.innerHTML;
11 </script>
12 </head>
13 <body onLoad="runTest();" contentEditable="true"><div style="padding-left: 5px;"></div></body></html>