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

Unified Diff: LayoutTests/editing/execCommand/4580583-1.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/execCommand/4580583-1.html
diff --git a/LayoutTests/editing/execCommand/4580583-1.html b/LayoutTests/editing/execCommand/4580583-1.html
deleted file mode 100644
index a6ea215e690b612994f713c5f5fe2eb0ef3e974c..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/execCommand/4580583-1.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<html>
-<head>
- <style>
- blockquote {
- color: blue;
- border-left: 2px solid blue;
- margin-left: 2px;
- }
- </style>
-</head>
-<body>
- <p>This tests to make sure that breaking a quoted list doesn't renumber the list. You should see a list broken in two below, the list items numbered 1, 2, 3, 4.</p>
- <div contenteditable="true">
- <blockquote type="cite">
- <ol>
- <li>One</li>
- <li id="two">Two</li>
- <li>Three</li>
- <li>Four</li>
- </ol>
- </blockquote>
- </div>
-
- <script>
- li = document.getElementById("two");
- selection = window.getSelection();
- selection.setPosition(li, li.childNodes.length);
- document.execCommand("InsertNewlineInQuotedContent");
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698