tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

S15.2.2.1_A2_T5.js (712B)


      1 // Copyright 2009 the Sputnik authors.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 info: |
      6    When the Object constructor is called with one argument value and
      7    the value is a native ECMAScript object, do not create a new object but simply return value
      8 es5id: 15.2.2.1_A2_T5
      9 description: The value is a Date object
     10 ---*/
     11 
     12 var obj = new Date(1978, 3);
     13 
     14 var n_obj = new Object(obj);
     15 
     16 assert.sameValue(n_obj, obj, 'The value of n_obj is expected to equal the value of obj');
     17 assert.sameValue(n_obj.getFullYear(), 1978, 'n_obj.getFullYear() must return 1978');
     18 assert.sameValue(n_obj.getMonth(), 3, 'n_obj.getMonth() must return 3');
     19 
     20 reportCompare(0, 0);