blob: 383864d6048a8be4a927670b5384a99e020595f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
load("test-common.js");
try {
assert(Date.length === 7);
assert(Date.name === "Date");
assert(Date.prototype.length === undefined);
console.log("PASS");
} catch (e) {
console.log("FAIL: " + e);
}
|