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

Unified Diff: LayoutTests/editing/inserting/6104369.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/6104369.html
diff --git a/LayoutTests/editing/inserting/6104369.html b/LayoutTests/editing/inserting/6104369.html
deleted file mode 100644
index 393b763e086cbdf849838d1fac3bb61b8cc178b7..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/inserting/6104369.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<style>
-blockquote {
- color: blue;
- border-left: 1px solid blue;
- padding-left: 2px;
- margin: 0px;
-}
-</style>
-<body>
-<div>This tests for a bug where hitting return at the end of a paragraph inside a blockquote would create an extraneous empty quoted paragraph. You should see "line one" (quoted), "" (unquoted), and "line two" (quoted) below.</div>
-<div id="div" contentEditable="true"><blockquote type="cite"><div id="test">line one<br>line two</div></blockquote></div>
-<script>
-if (window.testRunner)
- window.testRunner.dumpAsText();
-test = document.getElementById("test");
-window.getSelection().setPosition(test, 1);
-document.execCommand("InsertNewlineInQuotedContent");
-if (window.testRunner) {
- div = document.getElementById("div");
- div.innerText = div.innerHTML;
-}
-</script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698