| Index: third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-1.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-1.html b/third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-1.html
|
| deleted file mode 100644
|
| index aec31d40398cfa0ecba69d75a1109c865d6c78a6..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-1.html
|
| +++ /dev/null
|
| @@ -1,38 +0,0 @@
|
| -<html>
|
| -<body>
|
| -<div>
|
| -This tests outdenting "three". You should see 2 and 3 before "three" and "four" respectively.
|
| -<ol id="e" contenteditable="true">
|
| -<li>one</li>
|
| -<ol><li>two</li>
|
| -<li id="test">three</li></ol>
|
| -<li>four</li>
|
| -</ol>
|
| -</div>
|
| -
|
| -<ul>
|
| -<li>Before:<span id="c1"></span></li>
|
| -<li>After:<span id="c2"></span></li>
|
| -</ul>
|
| -
|
| -<script type="text/javascript">
|
| -
|
| -if (window.testRunner) {
|
| - testRunner.dumpEditingCallbacks();
|
| - testRunner.dumpAsText();
|
| -}
|
| -
|
| -var e = document.getElementById('e');
|
| -
|
| -document.getElementById('c1').appendChild(document.createTextNode(e.innerHTML));
|
| -
|
| -var s = window.getSelection();
|
| -var r = document.createRange();
|
| -r.selectNode(document.getElementById('test'));
|
| -s.removeAllRanges();
|
| -s.addRange(r);
|
| -document.execCommand("Outdent", false, "");
|
| -
|
| -document.getElementById('c2').appendChild(document.createTextNode(e.innerHTML));
|
| -
|
| -</script>
|
|
|