| Index: third_party/WebKit/LayoutTests/editing/inserting/insert-paragraph-02.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/inserting/insert-paragraph-02.html b/third_party/WebKit/LayoutTests/editing/inserting/insert-paragraph-02.html
|
| deleted file mode 100644
|
| index a26eeb2466b93967c328c8c5c1d90391ca9c864e..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/editing/inserting/insert-paragraph-02.html
|
| +++ /dev/null
|
| @@ -1,20 +0,0 @@
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.dumpEditingCallbacks();
|
| -</script>
|
| -<p>This tests inserting a paragraph separator after a table. There should be an empty paragraph between the table and 'bar' and the caret should be in the empty paragraph.</p>
|
| -<div contenteditable="true" id="div"><table border="1"><tr><td>foo</td></tr></table>bar</div>
|
| -
|
| -<script>
|
| -if (window.internals)
|
| - internals.settings.setEditingBehavior('mac');
|
| -var sel = window.getSelection();
|
| -var div = document.getElementById("div");
|
| -sel.collapse(div, 0);
|
| -sel.modify("move", "forward", "character");
|
| -sel.modify("move", "forward", "character");
|
| -sel.modify("move", "forward", "character");
|
| -sel.modify("move", "forward", "character");
|
| -sel.modify("move", "forward", "character");
|
| -document.execCommand("InsertParagraph");
|
| -</script>
|
|
|