tor-browser

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

regress-385393-03.js (832B)


      1 // |reftest| skip-if(!this.uneval)
      2 
      3 /* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
      4 /* This Source Code Form is subject to the terms of the Mozilla Public
      5 * License, v. 2.0. If a copy of the MPL was not distributed with this
      6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      7 
      8 
      9 //-----------------------------------------------------------------------------
     10 var BUGNUMBER = 385393;
     11 var summary = 'Regression test for bug 385393';
     12 var actual = '';
     13 var expect = '';
     14 
     15 
     16 //-----------------------------------------------------------------------------
     17 test();
     18 //-----------------------------------------------------------------------------
     19 
     20 function test()
     21 {
     22  printBugNumber(BUGNUMBER);
     23  printStatus (summary);
     24 
     25  f = (function() { new (delete y) });
     26  eval(uneval(f))
     27 
     28  reportCompare(expect, actual, summary);
     29 }