diff options
Diffstat (limited to 'js/src/tests/test262/built-ins/Proxy/create-handler-is-revoked-proxy.js')
-rw-r--r-- | js/src/tests/test262/built-ins/Proxy/create-handler-is-revoked-proxy.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Proxy/create-handler-is-revoked-proxy.js b/js/src/tests/test262/built-ins/Proxy/create-handler-is-revoked-proxy.js new file mode 100644 index 0000000000..3ff7add338 --- /dev/null +++ b/js/src/tests/test262/built-ins/Proxy/create-handler-is-revoked-proxy.js @@ -0,0 +1,24 @@ +// Copyright (C) 2015 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-proxycreate +description: > + A Proxy is created with its [[ProxyHandler]] as revoked Proxy. +info: | + ProxyCreate ( target, handler ) + + [...] + 3. Let P be ! MakeBasicObject(« [[ProxyHandler]], [[ProxyTarget]] »). + [...] + 7. Set P.[[ProxyHandler]] to handler. + 8. Return P. +features: [Proxy] +---*/ + +var revocable = Proxy.revocable({}, {}); +revocable.revoke(); + +var proxy = new Proxy({}, revocable.proxy); +assert.sameValue(typeof proxy, "object"); + +reportCompare(0, 0); |