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

Unified Diff: LayoutTests/editing/deleting/2610675-1.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/deleting/2610675-1.html
diff --git a/LayoutTests/editing/deleting/2610675-1.html b/LayoutTests/editing/deleting/2610675-1.html
deleted file mode 100644
index db01f1864028f4fe8e271d4b7e2338f97a08aba3..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/deleting/2610675-1.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<html>
-<head>
-<style>
-blockquote[type="cite"] {
- color: blue;
- margin: 0px;
- padding-left: 4px;
- border-left: 2px solid blue;
-}
-</style>
-</head>
-<body>
-<div id="description">This tests to see that if the caret is in an empty quoted paragraph, that paragraph is in content that preserve newlines, and there's no quoted content before that paragraph, then pressing delete removes that paragraph's quoting and removes the empty line. Below you should see the attribution line, an unquoted paragraph, and then a quoted paragraph with "quoted" in it.</div>
-<div id="edit" contentEditable="true">
-<div><br></div>
-<div>On Tuesday, Justin wrote:</div>
-<div><br></div>
-<blockquote type="cite" id="blockquote"><div style="white-space: pre;">
-quoted</div></blockquote>
-</div>
-
-<script>
-if (window.testRunner)
- window.testRunner.dumpAsText();
-blockquote = document.getElementById("blockquote");
-window.getSelection().setPosition(blockquote, 0);
-document.execCommand("Delete");
-document.execCommand("InsertText", false, "not quoted");
-if (window.testRunner)
- document.body.innerText = document.getElementById("description").innerText + "\n" + document.getElementById("edit").innerHTML;
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698