| Index: LayoutTests/editing/pasteboard/paste-blockquote-2.html
|
| diff --git a/LayoutTests/editing/pasteboard/paste-blockquote-2.html b/LayoutTests/editing/pasteboard/paste-blockquote-2.html
|
| deleted file mode 100644
|
| index ed05bcf3eceba0c4daa73e8b29b9c6fda8a5964e..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/editing/pasteboard/paste-blockquote-2.html
|
| +++ /dev/null
|
| @@ -1,29 +0,0 @@
|
| -<!DOCYTPE html>
|
| -<html>
|
| -<head>
|
| -<style>
|
| -blockquote {
|
| - color: blue;
|
| - border-left: 2px solid blue;
|
| - margin: 0px;
|
| - padding: 0 0 0 20px;
|
| -}
|
| -</style>
|
| -</head>
|
| -<body>
|
| -<div id="div" contenteditable="true"> This should not be blockquoted.</div>
|
| -<script src="../../resources/dump-as-markup.js"></script>
|
| -<script>
|
| -Markup.description("This tests pasting a blockquote at the start of a paragraph.");
|
| -
|
| -var sel = window.getSelection();
|
| -var div = document.getElementById("div");
|
| -
|
| -sel.setPosition(div, 0);
|
| -document.execCommand("InsertHTML", false, "<blockquote type='cite'>This should not be blockquoted.</blockquote>");
|
| -
|
| -Markup.dump('div');
|
| -
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|