| Index: third_party/WebKit/LayoutTests/external/wpt/uievents/constructors/inputevent-constructor.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/uievents/constructors/inputevent-constructor.html b/third_party/WebKit/LayoutTests/external/wpt/uievents/constructors/inputevent-constructor.html
|
| index 9ade36d6a3d928527926d23e22144b1c7bf28540..8c946f765fa12203c7007510b92fb1252a010e39 100644
|
| --- a/third_party/WebKit/LayoutTests/external/wpt/uievents/constructors/inputevent-constructor.html
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/uievents/constructors/inputevent-constructor.html
|
| @@ -25,11 +25,10 @@ test(function() {
|
|
|
| test(function() {
|
| const range = new StaticRange();
|
| - range.setEnd(document, 1);
|
| const resultRange = new InputEvent('type', { targetRanges: [range] }).getTargetRanges()[0];
|
| assert_equals(resultRange.startContainer, document);
|
| assert_equals(resultRange.startOffset, 0);
|
| assert_equals(resultRange.endContainer, document);
|
| - assert_equals(resultRange.endOffset, 1);
|
| + assert_equals(resultRange.endOffset, 0);
|
| }, 'InputEvent construtor with InputEventInit where targetRanges is non empty list');
|
| </script>
|
|
|