| Index: third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-4.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-4.html b/third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-4.html
|
| deleted file mode 100644
|
| index 58e9377f0eb4a76811600fd3f2953d586aa6a0fa..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-4.html
|
| +++ /dev/null
|
| @@ -1,39 +0,0 @@
|
| -<html>
|
| -<body>
|
| -<div contenteditable="true">
|
| -This tests outdenting ordered lists that contains an unordered-list. You should see 1 through 3 before numbers "two" through "four".
|
| -<ol id="e">
|
| -<ol><li>one</li>
|
| -<li id="start">two</li></ol>
|
| -<ul><li>three</li></ul>
|
| -<ol><li id="end">four</li></ol>
|
| -</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.setStart(document.getElementById('start'),0);
|
| -r.setEnd(document.getElementById('end'),1);
|
| -s.removeAllRanges();
|
| -s.addRange(r);
|
| -document.execCommand("Outdent", false, "");
|
| -
|
| -document.getElementById('c2').appendChild(document.createTextNode(e.innerHTML));
|
| -
|
| -</script>
|
|
|