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

Unified Diff: LayoutTests/editing/pasteboard/paste-wrapped-blockquote-into-nonblockquote.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-wrapped-blockquote-into-nonblockquote.html
diff --git a/LayoutTests/editing/pasteboard/paste-wrapped-blockquote-into-nonblockquote.html b/LayoutTests/editing/pasteboard/paste-wrapped-blockquote-into-nonblockquote.html
deleted file mode 100644
index d858cc59276bc388e10e891351bf7783a5f6a751..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/pasteboard/paste-wrapped-blockquote-into-nonblockquote.html
+++ /dev/null
@@ -1,34 +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="pasteDiv" contenteditable="true"></div>
-<div id="copyDiv"><blockquote type='cite'><div>line 1</div><div>line 2</div></blockquote></div>
-<div>line 3</div>
-</body>
-<script src="../../resources/dump-as-markup.js"></script>
-<script>
-var range = document.createRange();
-var nodeToCopy = document.getElementById("copyDiv");
-range.setStartBefore(nodeToCopy);
-range.setEndAfter(nodeToCopy);
-var selection = window.getSelection();
-selection.addRange(range);
-document.execCommand("Copy");
-
-var pasteNode = document.getElementById("pasteDiv");
-selection.setPosition(pasteNode, 0);
-document.execCommand("Paste");
-Markup.description("This test ensures the copied the newline is NOT inside the blockquote -- a '<div><div><br></div></div>' should be appended as the next sibling of the blockquote. \n");
-Markup.dump('pasteDiv');
-</script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698