
You can now access an element's inline style via Element.style. The interface is not very capable yet though. :^)
6 lines
125 B
Text
6 lines
125 B
Text
interface CSSStyleDeclaration {
|
|
|
|
readonly attribute unsigned long length;
|
|
CSSOMString item(unsigned long index);
|
|
|
|
};
|