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

Unified Diff: LayoutTests/editing/inserting/5418891.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/inserting/5418891.html
diff --git a/LayoutTests/editing/inserting/5418891.html b/LayoutTests/editing/inserting/5418891.html
deleted file mode 100644
index 363ccbe35910dff7a046bb3bca58bb02581f44c6..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/inserting/5418891.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<style>
-blockquote {
- color: blue;
- border-left: 2px solid blue;
- padding-left: 5px;
- margin: 0px;
-}
-</style>
-<p>This tests for a crash when attempting to break a blockquote at the end of its content. The caret should be in the first of two empty paragraphs between two pieces of quoted content.</p>
-<div contenteditable="true">
-<blockquote type="cite"><div id="dv">foo</div></blockquote>
-<br>
-<blockquote type="cite"><div>bar</div></blockquote>
-</div>
-
-<script>
-dv = document.getElementById("dv");
-text = dv.firstChild;
-s = window.getSelection();
-s.setPosition(text, 3);
-document.execCommand("InsertNewlineInQuotedContent");
-</script>

Powered by Google App Engine
This is Rietveld 408576698