tor-browser

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

regress-375801.js (1191B)


      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 var BUGNUMBER = 375801;
     10 var summary = 'uneval should use "(void 0)" instead of "undefined"';
     11 var actual = '';
     12 var expect = '';
     13 
     14 
     15 //-----------------------------------------------------------------------------
     16 test();
     17 //-----------------------------------------------------------------------------
     18 
     19 function test()
     20 {
     21  printBugNumber(BUGNUMBER);
     22  printStatus (summary);
     23 
     24  expect = '({a:(void 0)})'
     25  actual = uneval({a: undefined})
     26  compareSource(expect, actual, summary + ': uneval');
     27 
     28  expect = 'function() {({a: undefined});}';
     29  actual = (function() {({a: undefined});}).toString();
     30  compareSource(expect, actual, summary + ': toString');
     31 
     32  expect = '(function () {({a: undefined});})';
     33  actual = (function () {({a: undefined});}).toSource();
     34  compareSource(expect, actual, summary + ': toSource');
     35 }