tor-browser

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

S11.4.1_A3.3_T2.js (636B)


      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 ---*/
      9 
     10 //CHECK#1
     11 function MyFunction() {}
     12 MyFunction.prop = 1;
     13 delete MyFunction.prop;
     14 if (MyFunction.prop !== undefined) {
     15  throw new Test262Error(
     16    '#1: function MyFunction(){}; MyFunction.prop = 1; delete MyFunction.prop; MyFunction.prop === undefined. Actual: ' +
     17    MyFunction.prop
     18  );
     19 }
     20 
     21 reportCompare(0, 0);