Given this stylesheet:
h2 {
color: red;
}
And given this markup:
<h1>Heading 1</h1><h2>Heading 2</h2>
When you delete the h1, the contents of the h2 are copied into the h1, and a span is inserted with the stylesheet properties for h2 copied to that span inline. The resulting markup looks like:
<h1><span style="color: red;">Heading 2</span></h1>
Is there a way to modify this behavior? The expected behavior would be that the h1 would be deleted, leaving the h2 intact as-is.
