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

Unified Diff: LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-4.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-into-blockquote-4.html
diff --git a/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-4.html b/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-4.html
deleted file mode 100644
index 9927b51176995202c205e348e5c330dd661ea8ee..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-4.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<html>
-<head>
-<style>
-blockquote {
- color: blue;
- border-left: 2px solid blue;
- margin: 0px;
- padding: 0 0 0 20px;
-}
-</style>
-</head>
-
-<body>
-<p>This test passes if nothing is double-quoted, and "Two" and "Four" aren't quoted at all.</p>
-<div contenteditable="true"><blockquote type='cite' id="block">Paste<br>Here</blockquote></div>
-
-<script>
-var sel = window.getSelection();
-var block = document.getElementById("block");
-
-sel.setPosition(block, 3);
-document.execCommand("InsertHTML", false, "<blockquote type='cite'>One</blockquote>Two<blockquote type='cite'>Three</blockquote>Four");
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698