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 | File Name: 15.9.5.36-1.js |
michael@0 | 9 | ECMA Section: 15.9.5.36 Date.prototype.setFullYear(year [, mon [, date ]] ) |
michael@0 | 10 | Description: |
michael@0 | 11 | |
michael@0 | 12 | If mon is not specified, this behaves as if mon were specified with the |
michael@0 | 13 | value getMonth( ). If date is not specified, this behaves as if date were |
michael@0 | 14 | specified with the value getDate( ). |
michael@0 | 15 | |
michael@0 | 16 | 1. Let t be the result of LocalTime(this time value); but if this time |
michael@0 | 17 | value is NaN, let t be +0. |
michael@0 | 18 | 2. Call ToNumber(year). |
michael@0 | 19 | 3. If mon is not specified, compute MonthFromTime(t); otherwise, call |
michael@0 | 20 | ToNumber(mon). |
michael@0 | 21 | 4. If date is not specified, compute DateFromTime(t); otherwise, call |
michael@0 | 22 | ToNumber(date). |
michael@0 | 23 | 5. Compute MakeDay(Result(2), Result(3), Result(4)). |
michael@0 | 24 | 6. Compute UTC(MakeDate(Result(5), TimeWithinDay(t))). |
michael@0 | 25 | 7. Set the [[Value]] property of the this value to TimeClip(Result(6)). |
michael@0 | 26 | 8. Return the value of the [[Value]] property of the this value. |
michael@0 | 27 | |
michael@0 | 28 | Author: christine@netscape.com |
michael@0 | 29 | Date: 12 november 1997 |
michael@0 | 30 | |
michael@0 | 31 | Added test cases for Year 2000 Compatilibity Testing. |
michael@0 | 32 | |
michael@0 | 33 | */ |
michael@0 | 34 | var SECTION = "15.9.5.36-1"; |
michael@0 | 35 | var VERSION = "ECMA_1"; |
michael@0 | 36 | startTest(); |
michael@0 | 37 | |
michael@0 | 38 | writeHeaderToLog( SECTION + " Date.prototype.setFullYear(year [, mon [, date ]] )"); |
michael@0 | 39 | |
michael@0 | 40 | // 1971 |
michael@0 | 41 | addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1971);TDATE", |
michael@0 | 42 | UTCDateFromTime(SetFullYear(0,1971)), |
michael@0 | 43 | LocalDateFromTime(SetFullYear(0,1971)) ); |
michael@0 | 44 | |
michael@0 | 45 | addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1971,0);TDATE", |
michael@0 | 46 | UTCDateFromTime(SetFullYear(0,1971,0)), |
michael@0 | 47 | LocalDateFromTime(SetFullYear(0,1971,0)) ); |
michael@0 | 48 | |
michael@0 | 49 | addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1971,0,1);TDATE", |
michael@0 | 50 | UTCDateFromTime(SetFullYear(0,1971,0,1)), |
michael@0 | 51 | LocalDateFromTime(SetFullYear(0,1971,0,1)) ); |
michael@0 | 52 | |
michael@0 | 53 | test(); |
michael@0 | 54 | |
michael@0 | 55 | function addNewTestCase( DateString, UTCDate, LocalDate) { |
michael@0 | 56 | DateCase = eval( DateString ); |
michael@0 | 57 | |
michael@0 | 58 | new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() ); |
michael@0 | 59 | new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() ); |
michael@0 | 60 | |
michael@0 | 61 | new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() ); |
michael@0 | 62 | new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() ); |
michael@0 | 63 | new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() ); |
michael@0 | 64 | new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() ); |
michael@0 | 65 | new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() ); |
michael@0 | 66 | new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() ); |
michael@0 | 67 | new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSeconds() ); |
michael@0 | 68 | new TestCase( SECTION, DateString+".getUTCMilliseconds()", UTCDate.ms, DateCase.getUTCMilliseconds() ); |
michael@0 | 69 | |
michael@0 | 70 | new TestCase( SECTION, DateString+".getFullYear()", LocalDate.year, DateCase.getFullYear() ); |
michael@0 | 71 | new TestCase( SECTION, DateString+".getMonth()", LocalDate.month, DateCase.getMonth() ); |
michael@0 | 72 | new TestCase( SECTION, DateString+".getDate()", LocalDate.date, DateCase.getDate() ); |
michael@0 | 73 | new TestCase( SECTION, DateString+".getDay()", LocalDate.day, DateCase.getDay() ); |
michael@0 | 74 | new TestCase( SECTION, DateString+".getHours()", LocalDate.hours, DateCase.getHours() ); |
michael@0 | 75 | new TestCase( SECTION, DateString+".getMinutes()", LocalDate.minutes, DateCase.getMinutes() ); |
michael@0 | 76 | new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() ); |
michael@0 | 77 | new TestCase( SECTION, DateString+".getMilliseconds()", LocalDate.ms, DateCase.getMilliseconds() ); |
michael@0 | 78 | |
michael@0 | 79 | DateCase.toString = Object.prototype.toString; |
michael@0 | 80 | |
michael@0 | 81 | new TestCase( SECTION, |
michael@0 | 82 | DateString+".toString=Object.prototype.toString;"+DateString+".toString()", |
michael@0 | 83 | "[object Date]", |
michael@0 | 84 | DateCase.toString() ); |
michael@0 | 85 | } |
michael@0 | 86 | |
michael@0 | 87 | function MyDate() { |
michael@0 | 88 | this.year = 0; |
michael@0 | 89 | this.month = 0; |
michael@0 | 90 | this.date = 0; |
michael@0 | 91 | this.hours = 0; |
michael@0 | 92 | this.minutes = 0; |
michael@0 | 93 | this.seconds = 0; |
michael@0 | 94 | this.ms = 0; |
michael@0 | 95 | } |
michael@0 | 96 | function LocalDateFromTime(t) { |
michael@0 | 97 | t = LocalTime(t); |
michael@0 | 98 | return ( MyDateFromTime(t) ); |
michael@0 | 99 | } |
michael@0 | 100 | function UTCDateFromTime(t) { |
michael@0 | 101 | return ( MyDateFromTime(t) ); |
michael@0 | 102 | } |
michael@0 | 103 | function MyDateFromTime( t ) { |
michael@0 | 104 | var d = new MyDate(); |
michael@0 | 105 | d.year = YearFromTime(t); |
michael@0 | 106 | d.month = MonthFromTime(t); |
michael@0 | 107 | d.date = DateFromTime(t); |
michael@0 | 108 | d.hours = HourFromTime(t); |
michael@0 | 109 | d.minutes = MinFromTime(t); |
michael@0 | 110 | d.seconds = SecFromTime(t); |
michael@0 | 111 | d.ms = msFromTime(t); |
michael@0 | 112 | |
michael@0 | 113 | d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms ); |
michael@0 | 114 | d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) ); |
michael@0 | 115 | d.day = WeekDay( d.value ); |
michael@0 | 116 | |
michael@0 | 117 | return (d); |
michael@0 | 118 | } |
michael@0 | 119 | function SetFullYear( t, year, mon, date ) { |
michael@0 | 120 | var T = ( isNaN(t) ) ? 0 : LocalTime(t) ; |
michael@0 | 121 | var YEAR = Number( year ); |
michael@0 | 122 | var MONTH = ( mon == void 0 ) ? MonthFromTime(T) : Number( mon ); |
michael@0 | 123 | var DATE = ( date == void 0 ) ? DateFromTime(T) : Number( date ); |
michael@0 | 124 | |
michael@0 | 125 | var DAY = MakeDay( YEAR, MONTH, DATE ); |
michael@0 | 126 | var UTC_DATE = UTC(MakeDate( DAY, TimeWithinDay(T))); |
michael@0 | 127 | |
michael@0 | 128 | return ( TimeClip(UTC_DATE) ); |
michael@0 | 129 | } |