Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / create-list-with-hr.html
blob1c55b28f8b96c8c02f38cffe1e3b2ae41bdffd62
1 <script>
2 if (window.testRunner)
3 testRunner.dumpEditingCallbacks();
4 </script>
5 <p>This test pushes a horizontal rule into an unordered list with InsertUnorderedList. <b>This demonstrates what might be a bug:</b> the horizontal rule appears before the list marker in the render tree.</p>
6 <div contenteditable="true" id="div"><hr></div>
8 <script>
9 var div = document.getElementById("div");
10 var sel = window.getSelection();
12 sel.collapse(div, 0);
13 document.execCommand("InsertUnorderedList");
14 </script>