| Index: LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-3.html
|
| diff --git a/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-3.html b/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-3.html
|
| deleted file mode 100644
|
| index aeb27d356069a8f6d567a3a038c4b9c4c3d476c2..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-3.html
|
| +++ /dev/null
|
| @@ -1,34 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<script src="../../resources/dump-as-markup.js"></script>
|
| -<style>
|
| - blockquote {
|
| - color: blue;
|
| - border-left: 2px solid blue;
|
| - margin: 0px;
|
| - padding: 0 0 0 20px;
|
| - }
|
| -</style>
|
| -</head>
|
| -<body contenteditable>
|
| -<div>
|
| -<p>This tests pasting a blockquote into a blockquote. Nothing below should be double-blockquoted.</p>
|
| - <div>
|
| - <blockquote type="cite">one<br>two<br>three<br id="endContent"><br><br></blockquote>
|
| - </div>
|
| - <br>
|
| -</div>
|
| -<script>
|
| -
|
| -var sel = window.getSelection();
|
| -var endContent = document.getElementById("endContent");
|
| -sel.setPosition(endContent, 1);
|
| -document.execCommand("InsertHTML", false, "<blockquote type='cite'><div>two</div></blockquote>");
|
| -
|
| -Markup.description(document.getElementsByTagName('p')[0].innerText);
|
| -Markup.dump(document.getElementsByTagName('div')[1]);
|
| -
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|