blob: ad06e0a5c333136907a6fc6cada7a44f620931ce [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
function performTest()
{
var node = document.getElementsByTagName("B")[0];
DOM_deleteAllChildren(node);
Selection_set(node,0,node,0);
var properties = Formatting_getFormatting();
delete properties["-uxwrite-shift"];
Selection_clearSelection();
var lines = new Array();
var names = Object.getOwnPropertyNames(properties).sort();
for (var i = 0; i < names.length; i++)
lines.push(names[i]+" = "+properties[names[i]]+"\n");
return lines.join("");
}
</script>
</head>
<body>
<b></b>
</body>
</html>