Re: Deciding in public (Was: SVGWG SVG-in-HTML proposal)

On Sun, 3 Aug 2008, Leif Halvard Silli wrote:
> 
> Btw, in CSS, there is a "blessed" mechanism for adding new,
> experimental/vendor spesific "things".

The reason this works in CSS (and the DOM) and not in HTML is that in CSS 
you can have redundancy and it won't cause problems even if any one 
browser supports multiple variants:

   p { opacity: 0.5; -moz-opacity: 0.5; -mb-opacity: 50%; }

...whereas with HTML elements there's no really good way to do this -- 
you might end up with one browser rendering multiple elements, or with 
incompatible fallback mechanisms, or with CSS applying to multiple 
elements, or all kinds of problems like that.

-- 
Ian Hickson               U+1047E                )\._.,--....,'``.    fL
http://ln.hixie.ch/       U+263A                /,   _.. \   _\  ;`._ ,.
Things that are impossible just take longer.   `._.-(,_..'--(,_..'`-.;.'

Received on Monday, 4 August 2008 01:39:29 UTC