diff options
Diffstat (limited to 'js/src/jit-test/tests/proxy/testDirectProxyGetOwnPropertyNames9.js')
-rw-r--r-- | js/src/jit-test/tests/proxy/testDirectProxyGetOwnPropertyNames9.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/proxy/testDirectProxyGetOwnPropertyNames9.js b/js/src/jit-test/tests/proxy/testDirectProxyGetOwnPropertyNames9.js new file mode 100644 index 000000000..18a2cc89d --- /dev/null +++ b/js/src/jit-test/tests/proxy/testDirectProxyGetOwnPropertyNames9.js @@ -0,0 +1,12 @@ +load(libdir + "asserts.js"); +// Revoked proxies should throw before calling the handler + +var called = false; +var target = {}; +var handler = { ownKeys: () => called = true }; +var holder = Proxy.revocable(target, handler); + +holder.revoke(); + +assertThrowsInstanceOf(() => Object.getOwnPropertyNames(holder.proxy), TypeError); +assertEq(called, false); |