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

Unified Diff: LayoutTests/editing/deleting/5495723.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/5495723.html
diff --git a/LayoutTests/editing/deleting/5495723.html b/LayoutTests/editing/deleting/5495723.html
deleted file mode 100644
index f67e38506cc959eb8cf4fdde5816426d92bfdd04..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/deleting/5495723.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<head>
-<style>
-blockquote[type=cite] {
- color:
-}
-</style>
-</head>
-<body>
-<div id="description">This tests for a bug where deleting whole paragraphs of quoted content plus a line break could pull unquoted content into a blockquote.</div>
-<div id="edit" contentEditable="true"><blockquote type="cite">one<br><span id="start">two</span></blockquote><span id="end">three</span></div>
-
-<script>
-if (window.testRunner)
- window.testRunner.dumpAsText();
-
-start = document.getElementById("start");
-end = document.getElementById("end");
-
-window.getSelection().setBaseAndExtent(start, 0, end, 0);
-document.execCommand("Delete");
-if (window.testRunner)
- document.body.innerText = document.getElementById("description").innerText + "\n\n" + document.getElementById("edit").innerHTML;
-</script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698