| Index: third_party/WebKit/LayoutTests/editing/selection/mouse/drag_user_select_none.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/selection/mouse/drag_user_select_none.html b/third_party/WebKit/LayoutTests/editing/selection/mouse/drag_user_select_none.html
|
| index a4594b08ffb63c7f8005ab2842037c0a3d710aa2..3fa16db3fcd0d6595928340798e3d48c446a6b3a 100644
|
| --- a/third_party/WebKit/LayoutTests/editing/selection/mouse/drag_user_select_none.html
|
| +++ b/third_party/WebKit/LayoutTests/editing/selection/mouse/drag_user_select_none.html
|
| @@ -27,9 +27,9 @@ test(function() {
|
|
|
| var selection = window.getSelection();
|
| var anchor = document.getElementById('anchor').firstChild;
|
| - assert_equals(selection.anchorNode, anchor, 'anchorNode');
|
| + assert_equals(selection.anchorNode, null, 'anchorNode');
|
| assert_equals(selection.anchorOffset, 0, 'anchorOffset');
|
| - assert_equals(selection.focusNode, anchor, 'focusNode');
|
| - assert_equals(selection.focusOffset, 2, 'focusOffset');
|
| + assert_equals(selection.focusNode, null, 'focusNode');
|
| + assert_equals(selection.focusOffset, 0, 'focusOffset');
|
| });
|
| </script>
|
|
|