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

Unified Diff: LayoutTests/editing/pasteboard/paste-blockquote-3.html

Issue 13954003: Remove mail blockquote special case handling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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: LayoutTests/editing/pasteboard/paste-blockquote-3.html
diff --git a/LayoutTests/editing/pasteboard/paste-blockquote-3.html b/LayoutTests/editing/pasteboard/paste-blockquote-3.html
deleted file mode 100644
index a787f1cd224f9acb5238bc2a3fadbb0645576a3f..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/pasteboard/paste-blockquote-3.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-blockquote {
- color: blue;
- border-left: 2px solid blue;
- margin: 0px;
- padding: 0 0 0 20px;
-}
-</style>
-</head>
-<body>
-<div id="div" contenteditable="true">This should not be blockquoted. This should not be blockquoted.</div>
-<script src="../../resources/dump-as-markup.js"></script>
-<script>
-if (window.internals)
- internals.settings.setEditingBehavior('mac');
-
-Markup.description("This tests pasting a blockquote into the middle of a paragraph.");
-
-var sel = window.getSelection();
-var div = document.getElementById("div");
-
-sel.setPosition(div, 0);
-sel.modify("move", "forward", "word");
-sel.modify("move", "forward", "word");
-sel.modify("move", "forward", "word");
-sel.modify("move", "forward", "word");
-sel.modify("move", "forward", "word");
-sel.modify("move", "forward", "character");
-document.execCommand("InsertHTML", false, "<blockquote type='cite'>&nbsp;This should not be blockquoted.<br>This should be blockquoted.<br>This should not be blockquoted.</blockquote>");
-
-Markup.dump('div');
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698