blob: 663afa94c45b89fff3dbd1462db91e4e29827df0 [file] [log] [blame]
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-date.prototype.setdate
description: Abrupt completion during type coercion of provided argument
info: |
1. Let t be LocalTime(? thisTimeValue(this value)).
2. Let dt be ? ToNumber(date).
---*/
var date = new Date();
var originalValue = date.getTime();
var obj = {
valueOf: function() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
date.setDate(obj);
});
assert.sameValue(date.getTime(), originalValue);