blob: de538cb56a8134520b8a8618c273e90e06db1fda [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
function performTest()
{
Selection_preserveWhileExecuting(function() {
var range = Selection_get();
Range_trackWhileExecuting(range,function() {
removeWhitespaceAndCommentNodes(document.body);
});
var outermost = Range_getOutermostNodes(range);
Formatting_pushDownInlineProperties(outermost);
});
}
</script>
</head>
<body>
<p style="color: blue">
<s style="font-size: 18pt">
<s style="font-family: monospace">
<s>One</s>
<s>Two</s>
<s>Three</s>
</s>
<s style="font-family: fantasy">
<s style="text-decoration: overline">Four</s>
<s style="text-decoration: line-through">[Five]</s>
<s style="text-decoration: overline line-through">Six</s>
</s>
</s>
<s style="font-family: sans-serif">
<s>Seven</s>
<s>Eight</s>
<s>Nine</s>
</s>
</p>
</body>
</html>