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

Unified Diff: LayoutTests/editing/inserting/break-blockquote-after-delete.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/break-blockquote-after-delete.html
diff --git a/LayoutTests/editing/inserting/break-blockquote-after-delete.html b/LayoutTests/editing/inserting/break-blockquote-after-delete.html
deleted file mode 100644
index 8e40bdc22729e0fba40870b324fd69146fcc6946..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/inserting/break-blockquote-after-delete.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<html>
- <head>
- <style>
- blockquote {
- color: blue;
- border-left: 2px solid blue;
- margin: 0px;
- padding-left: 10px;
- }
-
- blockquote #dq {
- color: green;
- border-color: green;
- }
-
-
- </style>
- <script>
- function test()
- {
- window.getSelection().setBaseAndExtent(document.getElementById('line'), 0, document.getElementById('dq'), 0);
- document.execCommand("Delete");
- document.execCommand("InsertNewlineInQuotedContent");
- document.execCommand("InsertText", true, "black");
- }
- </script>
- </head>
- <body onload="test()">This tests that the blockquote's typing style doesn't remain after breaking the blockquote and typing in the unquoted area.<br><br>
- <div contenteditable>
- <blockquote type="cite">blue
- <div id="line"><br></div>
- <div>
- <blockquote type="cite" id="dq">green</blockquote>
- </div>
- </blockquote>
- </div>
- </body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698