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.js |
michael@0 | 9 | Description: 'Tests RegExps multiline property' |
michael@0 | 10 | |
michael@0 | 11 | Author: Nick Lerissa |
michael@0 | 12 | Date: March 12, 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: multiline'; |
michael@0 | 19 | |
michael@0 | 20 | writeHeaderToLog('Executing script: RegExp_multiline.js'); |
michael@0 | 21 | writeHeaderToLog( SECTION + " "+ TITLE); |
michael@0 | 22 | |
michael@0 | 23 | // First we do a series of tests with RegExp.multiline set to false (default value) |
michael@0 | 24 | // Following this we do the same tests with RegExp.multiline set true(**). |
michael@0 | 25 | // RegExp.multiline |
michael@0 | 26 | new TestCase ( SECTION, "RegExp.multiline", |
michael@0 | 27 | false, RegExp.multiline); |
michael@0 | 28 | |
michael@0 | 29 | // (multiline == false) '123\n456'.match(/^4../) |
michael@0 | 30 | new TestCase ( SECTION, "(multiline == false) '123\\n456'.match(/^4../)", |
michael@0 | 31 | null, '123\n456'.match(/^4../)); |
michael@0 | 32 | |
michael@0 | 33 | // (multiline == false) 'a11\na22\na23\na24'.match(/^a../g) |
michael@0 | 34 | new TestCase ( SECTION, "(multiline == false) 'a11\\na22\\na23\\na24'.match(/^a../g)", |
michael@0 | 35 | String(['a11']), String('a11\na22\na23\na24'.match(/^a../g))); |
michael@0 | 36 | |
michael@0 | 37 | // (multiline == false) 'a11\na22'.match(/^.+^./) |
michael@0 | 38 | new TestCase ( SECTION, "(multiline == false) 'a11\na22'.match(/^.+^./)", |
michael@0 | 39 | null, 'a11\na22'.match(/^.+^./)); |
michael@0 | 40 | |
michael@0 | 41 | // (multiline == false) '123\n456'.match(/.3$/) |
michael@0 | 42 | new TestCase ( SECTION, "(multiline == false) '123\\n456'.match(/.3$/)", |
michael@0 | 43 | null, '123\n456'.match(/.3$/)); |
michael@0 | 44 | |
michael@0 | 45 | // (multiline == false) 'a11\na22\na23\na24'.match(/a..$/g) |
michael@0 | 46 | new TestCase ( SECTION, "(multiline == false) 'a11\\na22\\na23\\na24'.match(/a..$/g)", |
michael@0 | 47 | String(['a24']), String('a11\na22\na23\na24'.match(/a..$/g))); |
michael@0 | 48 | |
michael@0 | 49 | // (multiline == false) 'abc\ndef'.match(/c$...$/) |
michael@0 | 50 | new TestCase ( SECTION, "(multiline == false) 'abc\ndef'.match(/c$...$/)", |
michael@0 | 51 | null, 'abc\ndef'.match(/c$...$/)); |
michael@0 | 52 | |
michael@0 | 53 | // (multiline == false) 'a11\na22\na23\na24'.match(new RegExp('a..$','g')) |
michael@0 | 54 | new TestCase ( SECTION, "(multiline == false) 'a11\\na22\\na23\\na24'.match(new RegExp('a..$','g'))", |
michael@0 | 55 | String(['a24']), String('a11\na22\na23\na24'.match(new RegExp('a..$','g')))); |
michael@0 | 56 | |
michael@0 | 57 | // (multiline == false) 'abc\ndef'.match(new RegExp('c$...$')) |
michael@0 | 58 | new TestCase ( SECTION, "(multiline == false) 'abc\ndef'.match(new RegExp('c$...$'))", |
michael@0 | 59 | null, 'abc\ndef'.match(new RegExp('c$...$'))); |
michael@0 | 60 | |
michael@0 | 61 | // **Now we do the tests with RegExp.multiline set to true |
michael@0 | 62 | // RegExp.multiline = true; RegExp.multiline |
michael@0 | 63 | RegExp.multiline = true; |
michael@0 | 64 | new TestCase ( SECTION, "RegExp.multiline = true; RegExp.multiline", |
michael@0 | 65 | true, RegExp.multiline); |
michael@0 | 66 | |
michael@0 | 67 | // (multiline == true) '123\n456'.match(/^4../) |
michael@0 | 68 | new TestCase ( SECTION, "(multiline == true) '123\\n456'.match(/^4../)", |
michael@0 | 69 | String(['456']), String('123\n456'.match(/^4../))); |
michael@0 | 70 | |
michael@0 | 71 | // (multiline == true) 'a11\na22\na23\na24'.match(/^a../g) |
michael@0 | 72 | new TestCase ( SECTION, "(multiline == true) 'a11\\na22\\na23\\na24'.match(/^a../g)", |
michael@0 | 73 | String(['a11','a22','a23','a24']), String('a11\na22\na23\na24'.match(/^a../g))); |
michael@0 | 74 | |
michael@0 | 75 | // (multiline == true) 'a11\na22'.match(/^.+^./) |
michael@0 | 76 | //new TestCase ( SECTION, "(multiline == true) 'a11\na22'.match(/^.+^./)", |
michael@0 | 77 | // String(['a11\na']), String('a11\na22'.match(/^.+^./))); |
michael@0 | 78 | |
michael@0 | 79 | // (multiline == true) '123\n456'.match(/.3$/) |
michael@0 | 80 | new TestCase ( SECTION, "(multiline == true) '123\\n456'.match(/.3$/)", |
michael@0 | 81 | String(['23']), String('123\n456'.match(/.3$/))); |
michael@0 | 82 | |
michael@0 | 83 | // (multiline == true) 'a11\na22\na23\na24'.match(/a..$/g) |
michael@0 | 84 | new TestCase ( SECTION, "(multiline == true) 'a11\\na22\\na23\\na24'.match(/a..$/g)", |
michael@0 | 85 | String(['a11','a22','a23','a24']), String('a11\na22\na23\na24'.match(/a..$/g))); |
michael@0 | 86 | |
michael@0 | 87 | // (multiline == true) 'a11\na22\na23\na24'.match(new RegExp('a..$','g')) |
michael@0 | 88 | new TestCase ( SECTION, "(multiline == true) 'a11\\na22\\na23\\na24'.match(new RegExp('a..$','g'))", |
michael@0 | 89 | String(['a11','a22','a23','a24']), String('a11\na22\na23\na24'.match(new RegExp('a..$','g')))); |
michael@0 | 90 | |
michael@0 | 91 | // (multiline == true) 'abc\ndef'.match(/c$....$/) |
michael@0 | 92 | //new TestCase ( SECTION, "(multiline == true) 'abc\ndef'.match(/c$.+$/)", |
michael@0 | 93 | // 'c\ndef', String('abc\ndef'.match(/c$.+$/))); |
michael@0 | 94 | |
michael@0 | 95 | RegExp.multiline = false; |
michael@0 | 96 | |
michael@0 | 97 | test(); |