tor-browser

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

S11.4.1_A2.1.js (530B)


      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: If Type(x) is not Reference, return true
      6 esid: sec-delete-operator-runtime-semantics-evaluation
      7 description: Checking primitive value and Object value cases
      8 ---*/
      9 
     10 //CHECK#1
     11 if (delete 1 !== true) {
     12  throw new Test262Error('#1: delete 1 === true');
     13 }
     14 
     15 //CHECK#2
     16 if (delete new Object() !== true) {
     17  throw new Test262Error('#2: delete new Object() === true');
     18 }
     19 
     20 reportCompare(0, 0);