blob: 75cd22dd83c73a70c3f4ae8dd9f67da06df48140 [file] [log] [blame]
description("This tests that ScriptRegexp matching fails when running into an exceptional condition (stack overflow) without crashing.");
function runTest() {
var input = document.createElement("input");
input.type = "email";
function repeatedlySet(r) {
// Consume stack until failure.
input.value = r;
repeatedlySet(r);
}
repeatedlySet("an@example.com");
}
shouldThrow("runTest()");