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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/range/range-set-attribute-expected.txt

Issue 2463693002: INPUT element: Updating 'step' attribute should adjust the last value. (Closed)
Patch Set: Created 4 years, 2 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/fast/forms/range/range-set-attribute-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/forms/range/range-set-attribute-expected.txt b/third_party/WebKit/LayoutTests/fast/forms/range/range-set-attribute-expected.txt
index 021e77f3d3599ed56dbcd2627eab95c0174b0939..8013045fd18741ee493477f91ed6917c7316536b 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/range/range-set-attribute-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/forms/range/range-set-attribute-expected.txt
@@ -10,6 +10,10 @@ changing the max should effect value
PASS input.setAttribute("max", "10"); input.value is "10"
value attribute should not change the value after you set a value
PASS input.value = 10; input.setAttribute("value", "5"); input.value is "10"
+Updating step attribute should adjust the last value.
+PASS input.value is "50"
+PASS input.step = "15"; input.value is "45"
+PASS input.step = "20"; input.value is "40"
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698