Index: LayoutTests/editing/pasteboard/paste-blockquote-and-paragraph-break.html |
diff --git a/LayoutTests/editing/pasteboard/paste-blockquote-and-paragraph-break.html b/LayoutTests/editing/pasteboard/paste-blockquote-and-paragraph-break.html |
deleted file mode 100644 |
index 441edb2605e0a526bc1f6c2320d738669db9c621..0000000000000000000000000000000000000000 |
--- a/LayoutTests/editing/pasteboard/paste-blockquote-and-paragraph-break.html |
+++ /dev/null |
@@ -1,36 +0,0 @@ |
-<!DOCTYPE html> |
-<head> |
-<style> |
-blockquote { |
- color: blue; |
- border-left: 2px solid blue; |
- padding-left: 5px; |
- margin: 0px; |
-} |
-</style> |
-</head> |
-<body> |
-<p id="description">We copy and paste a blockquoted paragraph plus a paragraph break. |
-The paragraph break shouldn't be inside the blockquote on paste. |
-You should see 'hello' (blockquoted), 'world' (not quoted, black text), 'hello' (blockquoted), empty paragraph. |
-See <rdar://problem/5368833<</p> |
-<div id="div" contenteditable="true"><br><blockquote id="blockquote" type="cite">hello<br></blockquote><br></div> |
-<script src="../../resources/dump-as-markup.js"></script> |
-<script> |
-div = document.getElementById("div"); |
-blockquote = document.getElementById("blockquote"); |
-sel = window.getSelection(); |
-sel.setBaseAndExtent(blockquote, 0, div, 2); |
-document.execCommand("Copy"); |
-sel.setPosition(div, 0); |
- |
-Markup.description(document.getElementById('description').textContent); |
- |
-Markup.dump(div, 'Before paste'); |
-document.execCommand("Paste"); |
-Markup.dump(div, 'After paste'); |
-document.execCommand("InsertHTML", false, "world"); |
-Markup.dump(div, 'After inserting "world"'); |
-</script> |
-</body> |
-</html> |