Sign in
webkit
/
WebKit
/
0c9be6fb3448daee85032264d5f59c23aec7adea
/
.
/
JSTests
/
stress
/
missing-exception-check-in-string-compare.js
blob: 35e02aea8ed58c7fe227e82c540d2276fd570fff [
file
] [
log
] [
blame
]
const
s1
=
(-
1
).
toLocaleString
().
padEnd
(
2
**
31
-
1
,
'aa'
);
const
s2
=
(-
1
).
toLocaleString
().
padEnd
(
2
**
31
-
1
,
'aa'
);
try
{
// Force evaluation of Rope
s1
==
s2
;
}
catch
(
e
)
{
exception
=
e
;
}
if
(
exception
!=
"RangeError: Out of memory"
)
throw
"FAILED"
;