Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / outdent-nested-lists-3.html
blob97ac0923159b226f0074b541cdd43f746c1a5387
1 <html>
2 <body>
3 <div>
4 This tests outdenting "two". You should see 1 before "one", "two", and "three" but 2 before "four".
5 <ol id="e" contenteditable="true">
6 <ol><li>one</li>
7 <li id="test">two</li>
8 <li>three</li></ol>
9 <li>four</li>
10 </ol>
11 </div>
13 <ul>
14 <li>Before:<span id="c1"></span></li>
15 <li>After:<span id="c2"></span></li>
16 </ul>
18 <script type="text/javascript">
20 if (window.testRunner) {
21 testRunner.dumpEditingCallbacks();
22 testRunner.dumpAsText();
25 var e = document.getElementById('e');
27 document.getElementById('c1').appendChild(document.createTextNode(e.innerHTML));
29 var s = window.getSelection();
30 var r = document.createRange();
31 r.selectNode(document.getElementById('test'));
32 s.removeAllRanges();
33 s.addRange(r);
34 document.execCommand("Outdent", false, "");
36 document.getElementById('c2').appendChild(document.createTextNode(e.innerHTML));
38 </script>