Sign in
webkit
/
WebKit
/
73559930a6418bc4621c1c5774b11e1be9c21a8f
/
.
/
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']"
);