| Index: third_party/WebKit/LayoutTests/editing/selection/move-by-character-6.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/selection/move-by-character-6.html b/third_party/WebKit/LayoutTests/editing/selection/move-by-character-6.html
|
| deleted file mode 100644
|
| index e4efaa862c3c371625d736a4358a9635cbdd5181..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/editing/selection/move-by-character-6.html
|
| +++ /dev/null
|
| @@ -1,22 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="../../resources/testharnessreport.js"></script>
|
| -<div contenteditable id="root" class="editing">
|
| -<span id="sample">foo bar baz</span>
|
| -</div>
|
| -<div id="log"></div>
|
| -<script>
|
| -test(function() {
|
| - var selection = window.getSelection();
|
| - var sample = document.getElementById('sample');
|
| - selection.collapse(sample, 0);
|
| - for (i = 0; i < 11; ++i)
|
| - selection.modify('move', 'forward', 'character');
|
| - for (i = 0; i < 11; ++i)
|
| - selection.modify('move', 'backward', 'character');
|
| -
|
| - assert_true(selection.isCollapsed, 'isCollapsed');
|
| - assert_equals(selection.anchorNode, sample.firstChild, 'anchorNode');
|
| - assert_equals(selection.anchorOffset, 0, 'anchorOffset');
|
| -});
|
| -</script>
|
|
|