Backed out 2 changesets (bug 1888310, bug 1884625) for causing failures on browser_ap...
[gecko.git] / js / src / tests / test262 / staging / explicit-resource-management / Symbol / dispose / cross-realm.js
blob40a3a9a54c7ff4dc7c4b09c17b904dd5be93b7f0
1 // |reftest| skip -- explicit-resource-management is not supported
2 // Copyright (C) 2024 the V8 project authors. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
5 /*---
6 description: Value shared by all realms
7 info: |
8   Unless otherwise specified, well-known symbols values are shared by all
9   realms.
10 features: [cross-realm, explicit-resource-management]
11 ---*/
13 var OSymbol = $262.createRealm().global.Symbol;
15 assert.sameValue(Symbol.dispose, OSymbol.dispose);
17 reportCompare(0, 0);