Source code
Revision control
Copy as Markdown
Other Tools
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
//-----------------------------------------------------------------------------
var BUGNUMBER = 314874;
var summary = 'Function.call/apply with non-primitive argument';
var actual = '';
var expect = '';
//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------
function test()
{
  printBugNumber(BUGNUMBER);
  printStatus (summary);
 
  var thisArg = { valueOf: function() { return {a: 'a', b: 'b'}; } };
  var f = function () { return (this); };
  expect  = f.call(thisArg);
  thisArg.f = f;
  actual = thisArg.f();
  delete thisArg.f;
  reportCompare(expect, actual, summary);
}