Sign in
webkit
/
WebKit
/
98517451c44951a553bf7eb2f40afcaffd7bcdca
/
.
/
JSTests
/
es6
/
Proxy_deleteProperty_handler.js
blob: a2c4728713f7ae2bf0158ce8484070cde4a58b22 [
file
] [
log
] [
blame
]
function
test
()
{
var
proxied
=
{};
var
passed
=
false
;
delete
new
Proxy
(
proxied
,
{
deleteProperty
:
function
(
t
,
k
)
{
passed
=
t
===
proxied
&&
k
===
"foo"
;
}
}).
foo
;
return
passed
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);