| Index: third_party/WebKit/LayoutTests/editing/inserting/insert-paragraph-04.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/inserting/insert-paragraph-04.html b/third_party/WebKit/LayoutTests/editing/inserting/insert-paragraph-04.html
|
| deleted file mode 100644
|
| index 41c00c3e8ad0de0e365e985a30a1566089cd601b..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/editing/inserting/insert-paragraph-04.html
|
| +++ /dev/null
|
| @@ -1,21 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="../../resources/testharnessreport.js"></script>
|
| -<p>This tests inserting a paragraph separator after a horizontal rule. You should see 'foo', empty paragraph, horizontal rule, 'bar', and the caret should be just after the horizontal rule. <b>This demonstrates 8345. The caret after a horizontal rule is drawn in the same location as the caret before a horizontal rule.</p>
|
| -<div contenteditable="true" id="div">foo<hr>bar</div>
|
| -<div id="log"></div>
|
| -<script>
|
| -test(function() {
|
| - if (window.internals)
|
| - internals.settings.setEditingBehavior('mac');
|
| - var selection = window.getSelection();
|
| - var div = document.getElementById('div');
|
| - selection.collapse(div, 0);
|
| - selection.modify('move', 'forward', 'word');
|
| - selection.modify('move', 'forward', 'character');
|
| - selection.modify('move', 'forward', 'character');
|
| - document.execCommand('insertParagraph');
|
| -
|
| - assert_equals(div.innerHTML, 'foo<hr><br>bar');
|
| -});
|
| -</script>
|
|
|