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

Unified Diff: LayoutTests/fast/forms/month/month-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/month/month-stepup-stepdown.html
diff --git a/LayoutTests/fast/forms/month/month-stepup-stepdown.html b/LayoutTests/fast/forms/month/month-stepup-stepdown.html
index b893d5a8110f48e84b09c0618cdb65e8e07fecb2..ecab8a846decddf6a4c6cb4173a26d3cd80a4c49 100644
--- a/LayoutTests/fast/forms/month/month-stepup-stepdown.html
+++ b/LayoutTests/fast/forms/month/month-stepup-stepdown.html
@@ -58,8 +58,8 @@ debug('Step=any');
shouldThrow('stepUp("2010-02", "any", null)');
shouldThrow('stepDown("2010-02", "any", null)');
debug('Overflow/underflow');
-shouldBeEqualToString('stepUp("2010-02", "3.40282346e+38", null)', '275760-09');
-shouldBeEqualToString('stepDown("2010-02", "3.40282346e+38", null)', '1970-01');
+shouldBeEqualToString('stepUp("2010-02", "3.40282346e+38", null)', '2010-02');
+shouldBeEqualToString('stepDown("2010-02", "3.40282346e+38", null)', '2010-02');
shouldBeEqualToString('stepUp("2010-02", "1", "2010-02")', '2010-02');
shouldBeEqualToString('stepDown("2010-02", "1", "2010-02")', '2010-02');

Powered by Google App Engine
This is Rietveld 408576698