Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Unified Diff: third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-2.html

Issue 2010323002: Convert execCommand/outdent-nested-lists-*.html to use w3c test harness (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 2016-05-31T10:35:27 Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-2.html
diff --git a/third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-2.html b/third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-2.html
deleted file mode 100644
index a4825b23ddd60b90aad64e57d85593b2f9c52aac..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-2.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<html>
-<body>
-<div>
-This tests outdenting "one". You see 1 before "one" but 1 and 2 before "two" and "three" respectively.
-<ol id="e" contenteditable="true">
-<ol><li id="test">one</li>
-<li>two</li>
-<li>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>

Powered by Google App Engine
This is Rietveld 408576698