blob: 10c64210c9c08df5e694cbae9dd0b42a3a35a6d4 [file] [log] [blame]
description(
'Tests: Object.prototype.toLocaleString(). Related bug: <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=3989">3989 JSC doesn\'t implement Object.prototype.toLocaleString()</a>'
);
var o = new Object();
shouldBe("o.toLocaleString()", "o.toString()");
o.toLocaleString = function () { return "Dynamic toLocaleString()"; }
shouldBe("o.toLocaleString()", '"Dynamic toLocaleString()"');
var successfullyParsed = true;