blob: dd5de38ea97d9ea90ae57c27de522d32474083f2 [file] [log] [blame]
/* -*- 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
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//-----------------------------------------------------------------------------
var BUGNUMBER = 355820;
var summary = 'Remove non-standard Script object';
var actual = '';
var expect = '';
//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------
function test()
{
enterFunc ('test');
printBugNumber(BUGNUMBER);
printStatus (summary);
print('This test will fail in gecko prior to 1.9');
expect = 'undefined';
actual = typeof Script;
reportCompare(expect, actual, summary);
exitFunc ('test');
}