If I create an HTML element:
sc {
font-variant: small-caps;
}
and apply it like this:
I want to display <sc>this text</sc> in small-caps.
it works as expected (except in IE, of course.) It becomes shorthand for
.sc {
font-variant: small-caps;
}
I want to display <span class='sc'>this text</span> in small-caps.
Is this intended/documented behavior? Is there a name for it?
document.createElement('sc');although i'm not sure these new elements will validate if they are not in the official spec. – Dan May 31 '11 at 17:19