tor-browser

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

S11.4.1_A3.3_T6.js (609B)


      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, remove the property
      6 esid: sec-delete-operator-runtime-semantics-evaluation
      7 description: Checking declared variable
      8 flags: [noStrict]
      9 ---*/
     10 
     11 //CHECK#1
     12 function MyFunction() {}
     13 var MyObjectVar = new MyFunction();
     14 if (delete MyObjectNotVar !== true) {
     15  throw new Test262Error(
     16    '#1: function MyFunction(){}; var MyObjectNotVar = new MyFunction(); delete MyObjectNotVar === true'
     17  );
     18 }
     19 
     20 reportCompare(0, 0);