Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / inserting / 5685601-3.html
blobd3ecd8611cc0a3c8df451f45d417e6d8959efbca
1 <p>This tests to make sure that InsertParagraph creates content an extra block when pressing return inside an empty editable root. Below, inside the editable root, there should be two empty blocks both with placeholders.</p>
2 <div id="div" contenteditable="true"></div>
4 <script>
5 div = document.getElementById("div");
6 div.focus();
7 document.execCommand("InsertParagraph");
8 if (window.testRunner) {
9 window.testRunner.dumpAsText();
10 document.body.innerText = div.innerHTML;
12 </script>