X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/1df5f87f1309a8daa30dabdee855f48ae40d14ab..6fe7ccc865dc7d7541b93c5bcaf6368d2c98a174:/tests/mozilla/js1_2/regexp/beginLine.js diff --git a/tests/mozilla/js1_2/regexp/beginLine.js b/tests/mozilla/js1_2/regexp/beginLine.js index c5ccbdc..686092a 100644 --- a/tests/mozilla/js1_2/regexp/beginLine.js +++ b/tests/mozilla/js1_2/regexp/beginLine.js @@ -60,8 +60,8 @@ RegExp.multiline = true; // 'abc\n123xyz'.match(new RegExp('^\d+')) - testcases[count++] = new TestCase ( SECTION, "'abc\n123xyz'.match(new RegExp('^\\d+'))", - String(['123']), String('abc\n123xyz'.match(new RegExp('^\\d+')))); + testcases[count++] = new TestCase ( SECTION, "'abc\n123xyz'.match(new RegExp('^\\d+','m'))", + String(['123']), String('abc\n123xyz'.match(new RegExp('^\\d+','m')))); function test() {