Source code

Revision control

Copy as Markdown

Other Tools

// |reftest| slow skip-if(!xulRuntime.shell) -- uses shell load() function
// Any copyright is dedicated to the Public Domain.
var PART = 1, PARTS = 4;
//-----------------------------------------------------------------------------
var BUGNUMBER = 430133;
var summary =
'ES5 Object.defineProperty(O, P, Attributes): redefinition ' +
PART + ' of ' + PARTS;
print(BUGNUMBER + ": " + summary);
loadRelativeToScript("defineProperty-setup.js");
/**************
* BEGIN TEST *
**************/
try
{
new TestRunner().runPropertyPresentTestsFraction(PART, PARTS);
}
catch (e)
{
throw "Error thrown during testing: " + e +
" at line " + e.lineNumber + "\n" +
(e.stack
? "Stack: " + e.stack.split("\n").slice(2).join("\n") + "\n"
: "");
}
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("Tests complete!");