Sign in
webkit
/
WebKit
/
c76c58243e3b15757ea8668f43536a601f3d5c6f
/
.
/
LayoutTests
/
fast
/
regex
/
script-tests
/
alternative-length-miscalculation.js
blob: b674aa6423195320524a2f4653430833887ccd45 [
file
] [
log
] [
blame
]
description
(
"This page tests for length miscalculations in regular expression processing."
);
var
re
=
/b|[^b]/
g
;
re
.
lastIndex
=
1
;
shouldBe
(
"re.exec('a')"
,
"null"
);
var
re2
=
/[^a]|ab/
;
shouldBe
(
"re2.test('')"
,
"false"
);