blob: 5f3295f18ffac99befffdb7d7be36f3983278e1f [file] [log] [blame]
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
* Contributor: Jason Orendorff
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 480579;
var summary = 'Do not assert: pobj_ == obj2';
var actual = '';
var expect = '';
//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------
function test()
{
enterFunc ('test');
printBugNumber(BUGNUMBER);
printStatus (summary);
expect = '12';
a = {x: 1};
b = {__proto__: a};
c = {__proto__: b};
for (i = 0; i < 2; i++) {
print(actual += c.x);
b.x = 2;
}
reportCompare(expect, actual, summary);
exitFunc ('test');
}