Sign in
webkit
/
WebKit
/
ecbcd311b05ac239b92fcb2f58299787a062a338
/
.
/
JSTests
/
stress
/
toctou-having-a-bad-time-new-array.js
blob: f1f4059c7be4ee38c1f4c3b377d8f2ebae20d438 [
file
] [
log
] [
blame
]
//@ skip if $buildType == "debug"
let code
=
`
function
foo
()
{
return
[
Date
.
prototype
];
}
for
(
let i
=
0
;
i
<
50
;
++
i
)
{
foo
();
}
let
[
proto
]
=
foo
();
Object
.
defineProperty
(
proto
,
'0'
,
{});
`;
for
(
let i
=
0
;
i
<
2000
;
i
++)
{
runString
(
code
);
}