Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / style / 4230923.html
blob6baf4df008046a10da8e9a1ba566668a5eeb33d6
1 <html>
2 <head>
3 <script>
4 function runTest() {
5 if (window.testRunner)
6 window.testRunner.dumpAsText();
7 window.getSelection().collapse(document.body, 0);
8 document.execCommand("JustifyCenter");
9 document.body.innerText = "This tests to make sure that changing block properties of content whose enclosing block is the body doesn't put those properties on the body, since Mail finds it difficult to remove those properties later when necessary. Below is the DOM inside the body. There should be a div with text-align:center on it.\n\n" + document.body.innerHTML;
12 </script>
13 </head>
14 <body contentEditable="true" onLoad="runTest();"></body>
15 </html>