michael@0: function toSource(o) { return o === null ? "null" : o.toSource(); } michael@0: michael@0: var gcgcz = /((?:.)+)((?:.)*)/; /* Greedy capture, greedy capture zero. */ michael@0: reportCompare(["a", "a", ""].toSource(), gcgcz.exec("a").toSource()); michael@0: reportCompare(["ab", "ab", ""].toSource(), gcgcz.exec("ab").toSource()); michael@0: reportCompare(["abc", "abc", ""].toSource(), gcgcz.exec("abc").toSource()); michael@0: michael@0: reportCompare(["a", ""].toSource(), toSource(/((?:)*?)a/.exec("a"))); michael@0: reportCompare(["a", ""].toSource(), toSource(/((?:.)*?)a/.exec("a"))); michael@0: reportCompare(["a", ""].toSource(), toSource(/a((?:.)*)/.exec("a"))); michael@0: michael@0: reportCompare(["B", "B"].toSource(), toSource(/([A-Z])/.exec("fooBar"))); michael@0: michael@0: // These just mustn't crash. See bug 872971 michael@0: try { reportCompare(/x{2147483648}x/.test('1'), false); } catch (e) {} michael@0: try { reportCompare(/x{2147483648,}x/.test('1'), false); } catch (e) {} michael@0: try { reportCompare(/x{2147483647,2147483648}x/.test('1'), false); } catch (e) {} michael@0: // Same for these. See bug 813366 michael@0: try { reportCompare("".match(/.{2147483647}11/), null); } catch (e) {} michael@0: try { reportCompare("".match(/(?:(?=g)).{2147483648,}/ + ""), null); } catch (e) {}