2 'This test checks for regression against: <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=3381"> 3381 Date.prototype.setDate() incorrect for values >=128.</a>'
9 var millisecondsPerDay = 1000 * 60 * 60 * 24;
11 for (var i = 120; i < 130; i++) {
15 shouldBe("d.valueOf() - curValue", "millisecondsPerDay");
17 curValue = d.valueOf();
21 var successfullyParsed = true;