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

Unified Diff: LayoutTests/editing/pasteboard/paste-into-blockquote-with-document-font-color.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-into-blockquote-with-document-font-color.html
diff --git a/LayoutTests/editing/pasteboard/paste-into-blockquote-with-document-font-color.html b/LayoutTests/editing/pasteboard/paste-into-blockquote-with-document-font-color.html
deleted file mode 100644
index f7036ef6d09edde4a5cd8651b04eb543bb594d51..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/pasteboard/paste-into-blockquote-with-document-font-color.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-<head>
-<style>
-blockquote {
- color: blue;
- border-left: 2px solid blue;
- margin-left: 0px;
- padding-left: 10px;
-}
-</style>
-</head>
-<body>
-<div id="description">This tests to make sure that content that has the document default color is pasted as blue
-(or whatever the color for quoted content is) when pasted in the middle of quoted content.</div>
-<div id="edit" contenteditable="true"><blockquote type="cite"><div>()</div></blockquote></div>
-<script src="../../resources/dump-as-markup.js"></script>
-<script>
-edit = document.getElementById("edit");
-description = document.getElementById("description");
-edit.focus();
-var s = window.getSelection();
-s.setPosition(edit.firstChild.firstChild.firstChild, 1);
-
-document.execCommand("InsertHTML", false, "<span class='Apple-style-span' style='color: black;'>This text should be blue.</span>");
-
-Markup.description(description.textContent);
-Markup.dump('edit');
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698