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

Unified Diff: third_party/WebKit/LayoutTests/platform/mac/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/mac/imported/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange-expected.txt
diff --git a/third_party/WebKit/LayoutTests/platform/mac/imported/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange-expected.txt b/third_party/WebKit/LayoutTests/platform/mac/imported/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange-expected.txt
index 440795b33fb0e47f2d4159a5a1be5f0586051c44..cca148f5e492d70722e4b60b9eea2ed3e53232b8 100644
--- a/third_party/WebKit/LayoutTests/platform/mac/imported/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange-expected.txt
+++ b/third_party/WebKit/LayoutTests/platform/mac/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 @@ PASS input direction of setSelectionRange(0,1,"none")
PASS input direction of setSelectionRange(0,1,"hoge")
PASS input direction of setSelectionRange(0,1,"BACKWARD")
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