Sign in
webkit
/
WebKit
/
18eafb7225658eb078fb4b435c7e6f4bc55edf7a
/
.
/
JSTests
/
stress
/
custom-value-delete-property-2.js
blob: 5a6e4cb42d5557b533fbb81401e7fa13455bcff2 [
file
] [
log
] [
blame
]
const
Value
=
$vm
.
createCustomTestGetterSetter
();
function
test2
()
{
function
foo
()
{
const
o
=
{};
for
(
let i
=
0
;
i
<
8
;
i
++)
{
let x
=
o
.
customValue2
;
o
.
__proto__
=
Value
;
}
delete
Value
.
customValue
;
}
foo
();
foo
();
}
test2
();