tor-browser

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

regress-440558.js (1015B)


      1 // |reftest| skip-if(Android)
      2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 //-----------------------------------------------------------------------------
      8 var BUGNUMBER = 440558;
      9 var summary = 'Do not assert: *flagp != GCF_FINAL';
     10 var actual = 'No Crash';
     11 var expect = 'No Crash';
     12 
     13 //-----------------------------------------------------------------------------
     14 test();
     15 //-----------------------------------------------------------------------------
     16 
     17 function test()
     18 {
     19  printBugNumber(BUGNUMBER);
     20  printStatus (summary);
     21 
     22  print('Note: this test requires that javascript.options.gczeal ' +
     23        'be set to 2 prior to the browser start');
     24 
     25  m = function(a, b) {
     26    if (++i < 10) {
     27    }
     28  };
     29  e = function(a, b) {
     30  };
     31 
     32  reportCompare(expect, actual, summary);
     33 }