Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: third_party/WebKit/LayoutTests/platform/win/imported/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange-expected.txt

Issue 2145943002: Auto-rebaseline for r405102 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)

Powered by Google App Engine
This is Rietveld 408576698