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> |