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