Sign in
webkit
/
WebKit
/
1e0197afe9ceb835575cd35795e88773cb8a574d
/
.
/
LayoutTests
/
fast
/
regex
/
script-tests
/
non-capturing-backtracking.js
blob: d9f97f5eb99fe1669730477cdc3b48f9a26f485a [
file
] [
log
] [
blame
]
description
(
"This page tests for proper backtracking with greedy quantifiers and non-capturing parentheses."
);
var
re
=
/(?:a*)a/
;
shouldBe
(
"re.exec('a')"
,
"['a']"
);