| Index: third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/selection-not-application.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/selection-not-application.html b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/selection-not-application.html
|
| index 576e6d1254ac2a486c9a7107b64140bb1d72ae18..b0db8a96fabd7af336c6ffef4556acd38cf4f719 100644
|
| --- a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/selection-not-application.html
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/selection-not-application.html
|
| @@ -14,14 +14,17 @@
|
| test(function(){
|
| var el = document.createElement("input");
|
| el.type = type;
|
| + assert_equals(el.selectionStart, null);
|
| + assert_equals(el.selectionEnd, null);
|
| + assert_equals(el.selectionDirection, null);
|
| assert_throws("InvalidStateError", function(){
|
| - el.selectionStart;
|
| + el.selectionStart = 0;
|
| });
|
| assert_throws("InvalidStateError", function(){
|
| - el.selectionEnd;
|
| + el.selectionEnd = 0;
|
| });
|
| assert_throws("InvalidStateError", function(){
|
| - el.selectionDirection;
|
| + el.selectionDirection = 'none';
|
| });
|
| assert_throws("InvalidStateError", function(){
|
| el.setRangeText("foobar");
|
|
|