regress-358594-06.js (738B)
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 = 358594; 11 var summary = 'Do not crash on uneval(this).'; 12 var actual = ''; 13 var expect = ''; 14 15 printBugNumber(BUGNUMBER); 16 printStatus (summary); 17 18 // don't crash|assert 19 f = function () { }; 20 f.hhhhhhhhh = this; 21 Object.defineProperty(this, "m", { set: f, enumerable: true, configurable: true }); 22 uneval(this); 23 reportCompare(expect, actual, summary);