ladybird/Userland/Libraries/LibWeb/CSS/CSSStyleDeclaration.idl
Andreas Kling 33e3f0c71f LibWeb: Expose barebones CSSStyleDeclaration to JavaScript
You can now access an element's inline style via Element.style.
The interface is not very capable yet though. :^)
2021-03-13 22:41:32 +01:00

6 lines
125 B
Text

interface CSSStyleDeclaration {
readonly attribute unsigned long length;
CSSOMString item(unsigned long index);
};