summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/object/seal.js
blob: e325c80d9d90083caf66c55986303acc41502f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Any copyright is dedicated to the Public Domain.
 * https://creativecommons.org/publicdomain/zero/1.0/
 */

var BUGNUMBER = 1075294;
var summary = "Object.seal() should return its argument with no conversion when the argument is a primitive value";

print(BUGNUMBER + ": " + summary);
assertEq(Object.seal(), undefined);
assertEq(Object.seal(undefined), undefined);
assertEq(Object.seal(null), null);
assertEq(Object.seal(1), 1);
assertEq(Object.seal("foo"), "foo");
assertEq(Object.seal(true), true);
if (typeof Symbol === "function") {
    assertEq(Object.seal(Symbol.for("foo")), Symbol.for("foo"));
}

if (typeof reportCompare === "function")
    reportCompare(true, true);