Element.style setter

Hi !

Opera allows element.style to be set with a css fragment, like

# element.style = 'background:green'

which maps to

# element.setAttribute('style', 'background:green');

Others do not support this (throw an error due to being a read-only  
property), but it makes the code less verbose.

How about allowing this in DOM 4 ?

Thanks.

Received on Monday, 27 August 2012 09:42:02 UTC