Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
custom-value-delete-property-2.js
blob: 0a5f9e2e79a557fd74b267befd590669a7f99ff8 [
file
] [
log
] [
blame
]
function
test2
()
{
function
foo
()
{
const
o
=
{};
for
(
let i
=
0
;
i
<
8
;
i
++)
{
let x
=
o
.
multiline
;
o
.
__proto__
=
RegExp
;
}
delete
RegExp
.
input
;
}
foo
();
foo
();
}
test2
();