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

Unified Diff: LayoutTests/editing/inserting/6703873.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.html
diff --git a/LayoutTests/editing/inserting/6703873.html b/LayoutTests/editing/inserting/6703873.html
deleted file mode 100644
index eec3f19f7608fcdbc819aa0d4c2111c1dd80ee78..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/inserting/6703873.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<html>
- <head>
- <style>
- blockquote {
- color: blue;
- border-left: 2px solid blue;
- margin: 0px;
- padding-left: 10px;
- }
- </style>
- <script>
- function log(msg)
- {
- document.getElementById('console').appendChild(document.createTextNode(msg + '\n'));
- }
-
- function test()
- {
- var s = window.getSelection();
- s.setPosition(document.getElementById('qt'), 0);
- s.modify("extend", "forward", "line");
- document.execCommand("InsertNewlineInQuotedContent");
- document.execCommand("InsertText", "true", "unquoted");
- }
- </script>
- </head>
- <body onload="test()">
- <p>This tests that inserting a newline in place of a full line of quoted content doesn't add an extra quoted line. The test has passed if there are no empty lines (quoted or unquoted) in the box below.</p>
- <div contenteditable="true">
- <blockquote type="cite"><div>quoted</div><div id="qt">quoted</div><div>quoted</div></blockquote>
- </div>
- <pre id="console"></pre>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698