tor-browser

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

constructor.js (437B)


      1 // Copyright (C) 2016 the V8 project authors. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-dataview-constructor
      6 description: >
      7  The DataView constructor is the %DataView% intrinsic object and the initial
      8  value of the DataView property of the global object.
      9 ---*/
     10 
     11 assert.sameValue(typeof DataView, "function", "`typeof DataView` is `'function'`");
     12 
     13 reportCompare(0, 0);