blob: 05c8ea7f602a55c435fb07a24488a53f12ed7822 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
function performTest()
{
Selection_preserveWhileExecuting(function() {
var range = Selection_get();
Range_ensureValidHierarchy(range);
Formatting_splitAroundSelection(range);
var outermost = Range_getOutermostNodes(range);
Formatting_pushDownInlineProperties(outermost);
});
}
</script>
</head>
<body>
<div style="font-weight: bold; font-style: italic; text-decoration: underline">
<p style="color: red">First [line</p>
<p style="color: green">Second line</p>
<p style="color: blue">Third line</p>
</div>
<div style="font-weight: bold; font-style: italic; text-decoration: underline">
<p style="color: yellow">Fourth line</p>
<p style="color: fuchsia">Fifth] line</p>
</div>
</body>
</html>