blob: bee210d8ff7c8e3925d43564292c69ef82557134 [file] [log] [blame]
function test() {
var i, names = ["anchor", "big", "bold", "fixed", "fontcolor", "fontsize",
"italics", "link", "small", "strike", "sub", "sup"];
for (i = 0; i < names.length; i++) {
if (typeof String.prototype[names[i]] !== 'function') {
return false;
}
}
return true;
}
if (!test())
throw new Error("Test failed");