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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange.html

Issue 2642393002: Import wpt@40665266227e475bc4a56884247d8c09d78dfb6a (Closed)
Patch Set: rebaseline-cl Created 3 years, 11 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/external/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange.html b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange.html
index 60d591bafab22b14925a52a252df345bdc563a9d..3c3a75433f98592d493efb26352e22cf2dde6ea6 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange.html
@@ -41,7 +41,7 @@ test(function() {
input.setSelectionRange(input.value.length+1,1)
assert_equals(input.selectionStart, 1, "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");
assert_equals(input.selectionEnd, 1, "element.selectionEnd should be 1");
- },'input setSelectionRange(input.value.length+1,input.value.length+1)');
+ },'input setSelectionRange(input.value.length+1,1)');
test(function() {
input.setSelectionRange(2,2)

Powered by Google App Engine
This is Rietveld 408576698