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

Unified Diff: LayoutTests/editing/inserting/6703873-2.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/6703873-2.html
diff --git a/LayoutTests/editing/inserting/6703873-2.html b/LayoutTests/editing/inserting/6703873-2.html
deleted file mode 100644
index 487145eef6cf99dc5e89c79260c2a3a0eb63f134..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/inserting/6703873-2.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<style>
- blockquote {
- color: blue;
- border-left: solid blue;
- padding-left: 5px;
- margin: 0;
- }
- blockquote blockquote {
- color: green;
- border-left-color: green;
- }
-</style>
-<body>
- <div>
- This tests that placing the cursor at the beginning of a
- doubly-quoted paragraph and hitting Return splits the outer blockquote
- at the right place, namely just above the inner blockquote, and inserts
- an empty line there, rather than outside the outer blockquote.
- </div>
- <div id="div" contentEditable="true"><blockquote type="cite"><div>Lorem<br>ipsum<blockquote id="test" type="cite">dolor</blockquote></blockquote></div>
- <script>
- test = document.getElementById("test");
- window.getSelection().setPosition(test, 0);
- document.execCommand("InsertNewlineInQuotedContent");
-
- if (window.testRunner) {
- window.testRunner.dumpAsText();
- div = document.getElementById("div");
- div.innerText = div.innerHTML;
- }
- </script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698