1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/js1_5/Regress/regress-346801.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,76 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +//----------------------------------------------------------------------------- 1.10 +var BUGNUMBER = 346801; 1.11 +var summary = 'Hang regression from bug 346021'; 1.12 +var actual = ''; 1.13 +var expect = 'No Hang'; 1.14 + 1.15 + 1.16 +//----------------------------------------------------------------------------- 1.17 +test(); 1.18 +//----------------------------------------------------------------------------- 1.19 + 1.20 +function test() 1.21 +{ 1.22 + enterFunc ('test'); 1.23 + printBugNumber(BUGNUMBER); 1.24 + printStatus (summary); 1.25 + 1.26 + try 1.27 + { 1.28 + var Class = { 1.29 + create: function() { 1.30 + return function() { 1.31 + this.initialize.apply(this, arguments); 1.32 + } 1.33 + } 1.34 + } 1.35 + 1.36 + Object.extend = function(destination, source) { 1.37 + print("Start"); 1.38 +// print(destination); 1.39 +// print(source); 1.40 + if(destination==source) 1.41 + print("Same desination and source!"); 1.42 + var i = 0; 1.43 + for (property in source) { 1.44 +// print(" " + property); 1.45 + destination[property] = source[property]; 1.46 + ++i; 1.47 + if (i > 1000) { 1.48 + throw "Hang"; 1.49 + } 1.50 + } 1.51 + print("Finish"); 1.52 + return destination; 1.53 + } 1.54 + 1.55 + var Ajax = { 1.56 + }; 1.57 + 1.58 + Ajax.Base = function() {}; 1.59 + Ajax.Base.prototype = { 1.60 + responseIsFailure: function() { } 1.61 + } 1.62 + 1.63 + Ajax.Request = Class.create(); 1.64 + 1.65 + Ajax.Request.prototype = Object.extend(new Ajax.Base(), {}); 1.66 + 1.67 + Ajax.Updater = Class.create(); 1.68 + 1.69 + Object.extend(Ajax.Updater.prototype, Ajax.Request.prototype); 1.70 + actual = 'No Hang'; 1.71 + } 1.72 + catch(ex) 1.73 + { 1.74 + actual = ex + ''; 1.75 + } 1.76 + reportCompare(expect, actual, summary); 1.77 + 1.78 + exitFunc ('test'); 1.79 +}