X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/b37bf2e156556c589aea3e1f58a377f2b1189665..HEAD:/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() {