tor-browser

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

delete-001.js (1091B)


      1 /* -*- tab-width: 2; indent-tabs-mode: nil; js-indent-level: 2 -*- */
      2 /* This Source Code Form is subject to the terms of the Mozilla Public
      3 * License, v. 2.0. If a copy of the MPL was not distributed with this
      4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      5 
      6 
      7 /**
      8   File Name:     delete-001.js
      9   Section:       regress
     10   Description:
     11 
     12   Regression test for
     13   http://scopus.mcom.com/bugsplat/show_bug.cgi?id=108736
     14 
     15   Author:             christine@netscape.com
     16   Date:               12 november 1997
     17 */
     18 
     19 var SECTION = "JS1_2";
     20 var TITLE   = "The variable statement";
     21 
     22 writeHeaderToLog( SECTION + " "+ TITLE);
     23 
     24 // delete all properties of the global object
     25 // per ecma, this does not affect variables in the global object declared
     26 // with var or functions
     27 
     28 for ( p in this ) {
     29  delete p;
     30 }
     31 
     32 var result ="";
     33 
     34 for ( p in this ) {
     35  result += String( p );
     36 }
     37 
     38 // not too picky here... just want to make sure we didn't crash or something
     39 
     40 new TestCase( "delete all properties of the global object",
     41       "PASSED",
     42       result == "" ? "FAILED" : "PASSED" );
     43 
     44 
     45 test();