Sign in
webkit
/
WebKit
/
228632c60f167d286f9b953b55cdcba950fbad5b
/
.
/
JSTests
/
stress
/
custom-value-delete-property-3.js
blob: c066a2823057df13d24fb9ff972d5776572559b5 [
file
] [
log
] [
blame
]
function
test6
()
{
function
foo
()
{
const
o
=
{};
for
(
let i
=
0
;
i
<
8
;
i
++)
{
o
.
lastMatch
;
o
.
__proto__
=
RegExp
;
}
delete
RegExp
.
input
;
}
foo
();
foo
();
}
test6
();