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

Unified Diff: LayoutTests/fast/forms/week/week-stepup-stepdown.html

Issue 1340883002: Avoid stack overflow in InputType::applyStep(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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: LayoutTests/fast/forms/week/week-stepup-stepdown.html
diff --git a/LayoutTests/fast/forms/week/week-stepup-stepdown.html b/LayoutTests/fast/forms/week/week-stepup-stepdown.html
index a31939b24c68baa1d301011276cea9513a1235f6..24aedebf67d19c91f2c402d9d0b1889cbebb6735 100644
--- a/LayoutTests/fast/forms/week/week-stepup-stepdown.html
+++ b/LayoutTests/fast/forms/week/week-stepup-stepdown.html
@@ -58,8 +58,8 @@ debug('Step=any');
shouldThrow('stepUp("2010-W02", "any", null)');
shouldThrow('stepDown("2010-W02", "any", null)');
debug('Overflow/underflow');
-shouldBeEqualToString('stepUp("2010-W02", "3.40282346e+38", null)', '275760-W37');
-shouldBeEqualToString('stepDown("2010-W02", "3.40282346e+38", null)', '1970-W01');
+shouldBeEqualToString('stepUp("2010-W02", "3.40282346e+38", null)', '2010-W02');
+shouldBeEqualToString('stepDown("2010-W02", "3.40282346e+38", null)', '2010-W02');
shouldBeEqualToString('stepUp("2010-W02", "1", "2010-W02")', '2010-W02');
shouldBeEqualToString('stepDown("2010-W02", "1", "2010-W02")', '2010-W02');

Powered by Google App Engine
This is Rietveld 408576698