Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
michael@0 | 1 | // |reftest| random |
michael@0 | 2 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | |
michael@0 | 8 | /** |
michael@0 | 9 | File Name: 15.9.5.34-1.js |
michael@0 | 10 | ECMA Section: 15.9.5.34 Date.prototype.setMonth(mon [, date ] ) |
michael@0 | 11 | Description: |
michael@0 | 12 | If date is not specified, this behaves as if date were specified with the |
michael@0 | 13 | value getDate( ). |
michael@0 | 14 | |
michael@0 | 15 | 1. Let t be the result of LocalTime(this time value). |
michael@0 | 16 | 2. Call ToNumber(date). |
michael@0 | 17 | 3. If date is not specified, compute DateFromTime(t); otherwise, call ToNumber(date). |
michael@0 | 18 | 4. Compute MakeDay(YearFromTime(t), Result(2), Result(3)). |
michael@0 | 19 | 5. Compute UTC(MakeDate(Result(4), TimeWithinDay(t))). |
michael@0 | 20 | 6. Set the [[Value]] property of the this value to TimeClip(Result(5)). |
michael@0 | 21 | 7. Return the value of the [[Value]] property of the this value. |
michael@0 | 22 | |
michael@0 | 23 | Author: christine@netscape.com |
michael@0 | 24 | Date: 12 november 1997 |
michael@0 | 25 | */ |
michael@0 | 26 | var SECTION = "15.9.5.34-1"; |
michael@0 | 27 | var VERSION = "ECMA_1"; |
michael@0 | 28 | startTest(); |
michael@0 | 29 | |
michael@0 | 30 | writeHeaderToLog( SECTION + " Date.prototype.setMonth(mon [, date ] )"); |
michael@0 | 31 | |
michael@0 | 32 | getFunctionCases(); |
michael@0 | 33 | |
michael@0 | 34 | // regression test for http://scopus.mcom.com/bugsplat/show_bug.cgi?id=112404 |
michael@0 | 35 | d = new Date(0); |
michael@0 | 36 | d.setMonth(1,1,1,1,1,1); |
michael@0 | 37 | |
michael@0 | 38 | addNewTestCase( |
michael@0 | 39 | "TDATE = new Date(0); TDATE.setMonth(1,1,1,1,1,1); TDATE", |
michael@0 | 40 | UTCDateFromTime(SetMonth(0,1,1)), |
michael@0 | 41 | LocalDateFromTime(SetMonth(0,1,1)) ); |
michael@0 | 42 | |
michael@0 | 43 | |
michael@0 | 44 | // whatever today is |
michael@0 | 45 | |
michael@0 | 46 | addNewTestCase( "TDATE = new Date(TIME_NOW); (TDATE).setMonth(11,31); TDATE", |
michael@0 | 47 | UTCDateFromTime(SetMonth(TIME_NOW,11,31)), |
michael@0 | 48 | LocalDateFromTime(SetMonth(TIME_NOW,11,31)) ); |
michael@0 | 49 | |
michael@0 | 50 | // 1970 |
michael@0 | 51 | |
michael@0 | 52 | addNewTestCase( "TDATE = new Date(0);(TDATE).setMonth(0,1);TDATE", |
michael@0 | 53 | UTCDateFromTime(SetMonth(0,0,1)), |
michael@0 | 54 | LocalDateFromTime(SetMonth(0,0,1)) ); |
michael@0 | 55 | |
michael@0 | 56 | addNewTestCase( "TDATE = new Date("+TIME_1900+"); "+ |
michael@0 | 57 | "(TDATE).setMonth(11,31); TDATE", |
michael@0 | 58 | UTCDateFromTime( SetMonth(TIME_1900,11,31) ), |
michael@0 | 59 | LocalDateFromTime( SetMonth(TIME_1900,11,31) ) ); |
michael@0 | 60 | |
michael@0 | 61 | test(); |
michael@0 | 62 | |
michael@0 | 63 | function addNewTestCase( DateString, UTCDate, LocalDate) { |
michael@0 | 64 | DateCase = eval( DateString ); |
michael@0 | 65 | |
michael@0 | 66 | new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() ); |
michael@0 | 67 | new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() ); |
michael@0 | 68 | |
michael@0 | 69 | new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() ); |
michael@0 | 70 | new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() ); |
michael@0 | 71 | new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() ); |
michael@0 | 72 | new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() ); |
michael@0 | 73 | new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() ); |
michael@0 | 74 | new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() ); |
michael@0 | 75 | new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSeconds() ); |
michael@0 | 76 | new TestCase( SECTION, DateString+".getUTCMilliseconds()", UTCDate.ms, DateCase.getUTCMilliseconds() ); |
michael@0 | 77 | |
michael@0 | 78 | new TestCase( SECTION, DateString+".getFullYear()", LocalDate.year, DateCase.getFullYear() ); |
michael@0 | 79 | new TestCase( SECTION, DateString+".getMonth()", LocalDate.month, DateCase.getMonth() ); |
michael@0 | 80 | new TestCase( SECTION, DateString+".getDate()", LocalDate.date, DateCase.getDate() ); |
michael@0 | 81 | new TestCase( SECTION, DateString+".getDay()", LocalDate.day, DateCase.getDay() ); |
michael@0 | 82 | new TestCase( SECTION, DateString+".getHours()", LocalDate.hours, DateCase.getHours() ); |
michael@0 | 83 | new TestCase( SECTION, DateString+".getMinutes()", LocalDate.minutes, DateCase.getMinutes() ); |
michael@0 | 84 | new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() ); |
michael@0 | 85 | new TestCase( SECTION, DateString+".getMilliseconds()", LocalDate.ms, DateCase.getMilliseconds() ); |
michael@0 | 86 | |
michael@0 | 87 | DateCase.toString = Object.prototype.toString; |
michael@0 | 88 | |
michael@0 | 89 | new TestCase( SECTION, |
michael@0 | 90 | DateString+".toString=Object.prototype.toString;"+DateString+".toString()", |
michael@0 | 91 | "[object Date]", |
michael@0 | 92 | DateCase.toString() ); |
michael@0 | 93 | } |
michael@0 | 94 | |
michael@0 | 95 | function getFunctionCases() { |
michael@0 | 96 | // some tests for all functions |
michael@0 | 97 | new TestCase( |
michael@0 | 98 | SECTION, |
michael@0 | 99 | "Date.prototype.setMonth.length", |
michael@0 | 100 | 2, |
michael@0 | 101 | Date.prototype.setMonth.length ); |
michael@0 | 102 | |
michael@0 | 103 | new TestCase( |
michael@0 | 104 | SECTION, |
michael@0 | 105 | "typeof Date.prototype.setMonth", |
michael@0 | 106 | "function", |
michael@0 | 107 | typeof Date.prototype.setMonth ); |
michael@0 | 108 | |
michael@0 | 109 | } |
michael@0 | 110 | |
michael@0 | 111 | function MyDate() { |
michael@0 | 112 | this.year = 0; |
michael@0 | 113 | this.month = 0; |
michael@0 | 114 | this.date = 0; |
michael@0 | 115 | this.hours = 0; |
michael@0 | 116 | this.minutes = 0; |
michael@0 | 117 | this.seconds = 0; |
michael@0 | 118 | this.ms = 0; |
michael@0 | 119 | } |
michael@0 | 120 | function LocalDateFromTime(t) { |
michael@0 | 121 | t = LocalTime(t); |
michael@0 | 122 | return ( MyDateFromTime(t) ); |
michael@0 | 123 | } |
michael@0 | 124 | function UTCDateFromTime(t) { |
michael@0 | 125 | return ( MyDateFromTime(t) ); |
michael@0 | 126 | } |
michael@0 | 127 | function MyDateFromTime( t ) { |
michael@0 | 128 | var d = new MyDate(); |
michael@0 | 129 | d.year = YearFromTime(t); |
michael@0 | 130 | d.month = MonthFromTime(t); |
michael@0 | 131 | d.date = DateFromTime(t); |
michael@0 | 132 | d.hours = HourFromTime(t); |
michael@0 | 133 | d.minutes = MinFromTime(t); |
michael@0 | 134 | d.seconds = SecFromTime(t); |
michael@0 | 135 | d.ms = msFromTime(t); |
michael@0 | 136 | |
michael@0 | 137 | d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms ); |
michael@0 | 138 | d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) ); |
michael@0 | 139 | d.day = WeekDay( d.value ); |
michael@0 | 140 | |
michael@0 | 141 | return (d); |
michael@0 | 142 | } |
michael@0 | 143 | function SetMonth( t, mon, date ) { |
michael@0 | 144 | var TIME = LocalTime(t); |
michael@0 | 145 | var MONTH = Number( mon ); |
michael@0 | 146 | var DATE = ( date == void 0 ) ? DateFromTime(TIME) : Number( date ); |
michael@0 | 147 | var DAY = MakeDay( YearFromTime(TIME), MONTH, DATE ); |
michael@0 | 148 | return ( TimeClip (UTC(MakeDate( DAY, TimeWithinDay(TIME) ))) ); |
michael@0 | 149 | } |