Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | |
michael@0 | 7 | /** |
michael@0 | 8 | Filename: RegExp_multiline_as_array.js |
michael@0 | 9 | Description: 'Tests RegExps $* property (same tests as RegExp_multiline.js but using $*)' |
michael@0 | 10 | |
michael@0 | 11 | Author: Nick Lerissa |
michael@0 | 12 | Date: March 13, 1998 |
michael@0 | 13 | */ |
michael@0 | 14 | |
michael@0 | 15 | var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; |
michael@0 | 16 | var VERSION = 'no version'; |
michael@0 | 17 | startTest(); |
michael@0 | 18 | var TITLE = 'RegExp: $*'; |
michael@0 | 19 | |
michael@0 | 20 | writeHeaderToLog('Executing script: RegExp_multiline_as_array.js'); |
michael@0 | 21 | writeHeaderToLog( SECTION + " "+ TITLE); |
michael@0 | 22 | |
michael@0 | 23 | |
michael@0 | 24 | // First we do a series of tests with RegExp['$*'] set to false (default value) |
michael@0 | 25 | // Following this we do the same tests with RegExp['$*'] set true(**). |
michael@0 | 26 | // RegExp['$*'] |
michael@0 | 27 | new TestCase ( SECTION, "RegExp['$*']", |
michael@0 | 28 | false, RegExp['$*']); |
michael@0 | 29 | |
michael@0 | 30 | // (['$*'] == false) '123\n456'.match(/^4../) |
michael@0 | 31 | new TestCase ( SECTION, "(['$*'] == false) '123\\n456'.match(/^4../)", |
michael@0 | 32 | null, '123\n456'.match(/^4../)); |
michael@0 | 33 | |
michael@0 | 34 | // (['$*'] == false) 'a11\na22\na23\na24'.match(/^a../g) |
michael@0 | 35 | new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(/^a../g)", |
michael@0 | 36 | String(['a11']), String('a11\na22\na23\na24'.match(/^a../g))); |
michael@0 | 37 | |
michael@0 | 38 | // (['$*'] == false) 'a11\na22'.match(/^.+^./) |
michael@0 | 39 | new TestCase ( SECTION, "(['$*'] == false) 'a11\na22'.match(/^.+^./)", |
michael@0 | 40 | null, 'a11\na22'.match(/^.+^./)); |
michael@0 | 41 | |
michael@0 | 42 | // (['$*'] == false) '123\n456'.match(/.3$/) |
michael@0 | 43 | new TestCase ( SECTION, "(['$*'] == false) '123\\n456'.match(/.3$/)", |
michael@0 | 44 | null, '123\n456'.match(/.3$/)); |
michael@0 | 45 | |
michael@0 | 46 | // (['$*'] == false) 'a11\na22\na23\na24'.match(/a..$/g) |
michael@0 | 47 | new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(/a..$/g)", |
michael@0 | 48 | String(['a24']), String('a11\na22\na23\na24'.match(/a..$/g))); |
michael@0 | 49 | |
michael@0 | 50 | // (['$*'] == false) 'abc\ndef'.match(/c$...$/) |
michael@0 | 51 | new TestCase ( SECTION, "(['$*'] == false) 'abc\ndef'.match(/c$...$/)", |
michael@0 | 52 | null, 'abc\ndef'.match(/c$...$/)); |
michael@0 | 53 | |
michael@0 | 54 | // (['$*'] == false) 'a11\na22\na23\na24'.match(new RegExp('a..$','g')) |
michael@0 | 55 | new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(new RegExp('a..$','g'))", |
michael@0 | 56 | String(['a24']), String('a11\na22\na23\na24'.match(new RegExp('a..$','g')))); |
michael@0 | 57 | |
michael@0 | 58 | // (['$*'] == false) 'abc\ndef'.match(new RegExp('c$...$')) |
michael@0 | 59 | new TestCase ( SECTION, "(['$*'] == false) 'abc\ndef'.match(new RegExp('c$...$'))", |
michael@0 | 60 | null, 'abc\ndef'.match(new RegExp('c$...$'))); |
michael@0 | 61 | |
michael@0 | 62 | // **Now we do the tests with RegExp['$*'] set to true |
michael@0 | 63 | // RegExp['$*'] = true; RegExp['$*'] |
michael@0 | 64 | RegExp['$*'] = true; |
michael@0 | 65 | new TestCase ( SECTION, "RegExp['$*'] = true; RegExp['$*']", |
michael@0 | 66 | true, RegExp['$*']); |
michael@0 | 67 | |
michael@0 | 68 | // (['$*'] == true) '123\n456'.match(/^4../) |
michael@0 | 69 | new TestCase ( SECTION, "(['$*'] == true) '123\\n456'.match(/^4../)", |
michael@0 | 70 | String(['456']), String('123\n456'.match(/^4../))); |
michael@0 | 71 | |
michael@0 | 72 | // (['$*'] == true) 'a11\na22\na23\na24'.match(/^a../g) |
michael@0 | 73 | new TestCase ( SECTION, "(['$*'] == true) 'a11\\na22\\na23\\na24'.match(/^a../g)", |
michael@0 | 74 | String(['a11','a22','a23','a24']), String('a11\na22\na23\na24'.match(/^a../g))); |
michael@0 | 75 | |
michael@0 | 76 | // (['$*'] == true) 'a11\na22'.match(/^.+^./) |
michael@0 | 77 | //new TestCase ( SECTION, "(['$*'] == true) 'a11\na22'.match(/^.+^./)", |
michael@0 | 78 | // String(['a11\na']), String('a11\na22'.match(/^.+^./))); |
michael@0 | 79 | |
michael@0 | 80 | // (['$*'] == true) '123\n456'.match(/.3$/) |
michael@0 | 81 | new TestCase ( SECTION, "(['$*'] == true) '123\\n456'.match(/.3$/)", |
michael@0 | 82 | String(['23']), String('123\n456'.match(/.3$/))); |
michael@0 | 83 | |
michael@0 | 84 | // (['$*'] == true) 'a11\na22\na23\na24'.match(/a..$/g) |
michael@0 | 85 | new TestCase ( SECTION, "(['$*'] == true) 'a11\\na22\\na23\\na24'.match(/a..$/g)", |
michael@0 | 86 | String(['a11','a22','a23','a24']), String('a11\na22\na23\na24'.match(/a..$/g))); |
michael@0 | 87 | |
michael@0 | 88 | // (['$*'] == true) 'a11\na22\na23\na24'.match(new RegExp('a..$','g')) |
michael@0 | 89 | new TestCase ( SECTION, "(['$*'] == true) 'a11\\na22\\na23\\na24'.match(new RegExp('a..$','g'))", |
michael@0 | 90 | String(['a11','a22','a23','a24']), String('a11\na22\na23\na24'.match(new RegExp('a..$','g')))); |
michael@0 | 91 | |
michael@0 | 92 | // (['$*'] == true) 'abc\ndef'.match(/c$....$/) |
michael@0 | 93 | //new TestCase ( SECTION, "(['$*'] == true) 'abc\ndef'.match(/c$.+$/)", |
michael@0 | 94 | // 'c\ndef', String('abc\ndef'.match(/c$.+$/))); |
michael@0 | 95 | |
michael@0 | 96 | RegExp['$*'] = false; |
michael@0 | 97 | |
michael@0 | 98 | test(); |