tor-browser

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

S11.4.1_A3.2_T1.js (456B)


      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 the property doesn't have the DontDelete attribute, return true
      6 esid: sec-delete-operator-runtime-semantics-evaluation
      7 description: Checking declared variable
      8 flags: [noStrict]
      9 ---*/
     10 
     11 //CHECK#1
     12 x = 1;
     13 if (delete x !== true) {
     14  throw new Test262Error('#1: x = 1; delete x === true');
     15 }
     16 
     17 reportCompare(0, 0);