1 2 3 4 5 6 7 8
var i=0; function f() { assertEq(/^[a-z0-9\.]+$/gi.test("Foo.Bar"), true); i++; if (i < 100) f(); } f();