Index: third_party/WebKit/LayoutTests/platform/win/imported/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/platform/win/imported/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange-expected.txt b/third_party/WebKit/LayoutTests/platform/win/imported/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange-expected.txt |
index 6aa927793d68e47400ea956ce8fc11eee7694cce..4ea2add96daf42c3acd9d6e8ca2313ad35daaf61 100644 |
--- a/third_party/WebKit/LayoutTests/platform/win/imported/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange-expected.txt |
+++ b/third_party/WebKit/LayoutTests/platform/win/imported/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange-expected.txt |
@@ -4,6 +4,8 @@ PASS input typeof(input.setSelectionRange)' |
PASS input setSelectionRange return void |
PASS input setSelectionRange(0,1) |
PASS input setSelectionRange(0,input.value.length+1) |
+PASS input setSelectionRange(input.value.length+1,input.value.length+1) |
+PASS input setSelectionRange(input.value.length+1,input.value.length+1) |
PASS input setSelectionRange(2,2) |
PASS input setSelectionRange(2,1) |
PASS input direction of setSelectionRange(0,1,"backward") |
@@ -12,6 +14,8 @@ FAIL input direction of setSelectionRange(0,1,"none") assert_equals: The directi |
FAIL input direction of setSelectionRange(0,1,"hoge") assert_equals: otherwise expected "none" but got "forward" |
FAIL input direction of setSelectionRange(0,1,"BACKWARD") assert_equals: selectionDirection should be 'none' expected "none" but got "forward" |
PASS input direction of setSelectionRange(0,1) |
+FAIL input setSelectionRange(1,-1) assert_equals: element.selectionStart should be 1 expected 1 but got 0 |
+FAIL input setSelectionRange(-1,1) assert_equals: ECMAScript conversion to unsigned long + if end is less than or equal to start then the start of the selection and the end of the selection must both be placed immediately before the character with offset end expected 1 but got 0 |
PASS input setSelectionRange("string",1) |
PASS input setSelectionRange(true,1) |
PASS input setSelectionRange([],1) |