Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / 5575101-3.html
blob666fecd1e6ada8ea0f78ff7c93b26e4f407d563c
1 <p>This tests for a bug where outdenting a list item twice would incorrectly move it above the list it was outdented from. Below you should see 'two' in order with 'one' and 'three' and it should not be in a list.</p>
2 <div contenteditable="true">
3 <ol>
4 <li>one</li>
5 <li id="insert"><ol><li id="outdent">two</li></ol></li>
6 <li>three</li>
7 </ol>
8 </div>
10 <script>
11 if (window.testRunner)
12 window.testRunner.dumpAsText();
13 outdent = document.getElementById("outdent");
14 window.getSelection().collapse(outdent, 0);
15 document.execCommand("Outdent");
16 document.execCommand("Outdent");
17 </script>