Sign in
webkit
/
WebKit
/
3edaba2ba8773ca7f680c84dc462d786504282f8
/
.
/
JSTests
/
stress
/
custom-value-delete-property-3.js
blob: 896e3058b9ddadb4f134c9e910a30f7f28cbec42 [
file
] [
log
] [
blame
]
function
test6
()
{
var
custom
=
$vm
.
createCustomTestGetterSetter
();
function
foo
()
{
const
o
=
{};
for
(
let i
=
0
;
i
<
8
;
i
++)
{
o
.
customValue2
;
o
.
__proto__
=
custom
;
}
delete
custom
.
customValue2
;
}
foo
();
foo
();
}
test6
();