tor-browser

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

S15.1.1.3_A3_T2.js (402B)


      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: The undefined is DontDelete
      6 esid: sec-undefined
      7 description: Use delete
      8 flags: [noStrict]
      9 ---*/
     10 
     11 // CHECK#1
     12 if (delete undefined !== false) {
     13  throw new Test262Error('#1: delete undefined === false. Actual: ' + (delete undefined));
     14 }
     15 
     16 reportCompare(0, 0);