blob: 02056802d74f8decc43e9fcb249dcaaed1468cb3 [file] [log] [blame]
/*
* Any copyright is dedicated to the Public Domain.
* https://creativecommons.org/publicdomain/zero/1.0/
*/
var BUGNUMBER = 1071464;
var summary = "Object.isFrozen() should return true when given primitive values as input";
print(BUGNUMBER + ": " + summary);
assertEq(Object.isFrozen(), true);
assertEq(Object.isFrozen(undefined), true);
assertEq(Object.isFrozen(null), true);
assertEq(Object.isFrozen(1), true);
assertEq(Object.isFrozen("foo"), true);
assertEq(Object.isFrozen(true), true);
if (typeof Symbol === "function") {
assertEq(Object.isFrozen(Symbol()), true);
}
if (typeof reportCompare === "function")
reportCompare(true, true);