| Index: third_party/WebKit/LayoutTests/editing/pasteboard/insert-div-text-into-text.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/pasteboard/insert-div-text-into-text.html b/third_party/WebKit/LayoutTests/editing/pasteboard/insert-div-text-into-text.html
|
| deleted file mode 100644
|
| index 0b38ed8984c2b48d155fbe88a5ce16a4221b2bf3..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/editing/pasteboard/insert-div-text-into-text.html
|
| +++ /dev/null
|
| @@ -1,26 +0,0 @@
|
| -<!DOCTYPE>
|
| -<html>
|
| -<body>
|
| -<div id="test" contenteditable="true">There be no line breaks in this sentence.</div>
|
| -<script src="../../resources/dump-as-markup.js"></script>
|
| -<script>
|
| -
|
| -if (window.testRunner)
|
| - testRunner.dumpEditingCallbacks();
|
| -if (window.internals)
|
| - internals.settings.setEditingBehavior('mac');
|
| -
|
| -Markup.description('This tests inserting a text wrapped in a div inside a text node.');
|
| -
|
| -var sel = window.getSelection();
|
| -var e = document.getElementById("test").firstChild;
|
| -
|
| -sel.collapse(e, 0);
|
| -sel.modify("move", "forward", "word");
|
| -sel.modify("move", "forward", "character");
|
| -document.execCommand("InsertHTML", false, "<div>should</div>");
|
| -
|
| -Markup.dump('test');
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|