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

Unified Diff: third_party/WebKit/LayoutTests/editing/execCommand/outdent-nested-lists-4.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-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>

Powered by Google App Engine
This is Rietveld 408576698