diff --git a/test/built-ins/BigInt/prototype/valueOf/cross-realm.js b/test/built-ins/BigInt/prototype/valueOf/cross-realm.js new file mode 100644 index 0000000000..97e1041712 --- /dev/null +++ b/test/built-ins/BigInt/prototype/valueOf/cross-realm.js @@ -0,0 +1,14 @@ +// Copyright 2018 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-bigint.prototype.valueof +description: valueOf called with a BigInt object from another realm +features: [BigInt, cross-realm] +---*/ + +var other = $262.createRealm().global; +var wrapped = other.Object(other.BigInt(0)); + +assert.sameValue(BigInt.prototype.valueOf.call(wrapped), 0n, + "cross-realm valueOf");