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

Unified Diff: third_party/WebKit/LayoutTests/editing/inserting/insert-paragraph-after-tab-span-and-text.html

Issue 2718543003: Remove EditingAppleTabSpan class handling (Closed)
Patch Set: Make editing/inserting/5549929-2.html pass Created 3 years, 9 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/inserting/insert-paragraph-after-tab-span-and-text.html
diff --git a/third_party/WebKit/LayoutTests/editing/inserting/insert-paragraph-after-tab-span-and-text.html b/third_party/WebKit/LayoutTests/editing/inserting/insert-paragraph-after-tab-span-and-text.html
deleted file mode 100644
index 457d8c5cd818b4d2dfc953c7f8d60249cf922678..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/inserting/insert-paragraph-after-tab-span-and-text.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<div id="test" contenteditable>
-<span class="Apple-tab-span" style="white-space:pre"> hello</span><br>
-<span class="Apple-style-span"><span class="Apple-tab-span" style="white-space: pre; "> </span>world</span></div>
-<script src="../../resources/dump-as-markup.js"></script>
-<script>
-
-document.body.focus();
-var span = document.getElementsByClassName('Apple-tab-span')[0];
-window.getSelection().collapse(span, 1);
-document.execCommand('InsertParagraph', false, null);
-
-Markup.description('This test ensures WebKit inserts a paragraph separator properly at the end of a tab span.')
-Markup.dump('test');
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698