ladybird/Userland/Libraries/LibWeb/CSS/CSSStyleDeclaration.idl
Andreas Kling 4559faf8d8 LibWeb: Support named CSS properties on CSSStyleDeclaration wrapper
Use the new CustomGet/CustomPut wrapper mechansim to intercept gets and
puts on CSSStyleDeclaration objects. This allows content to get and set
individual CSS properties from JavaScript. :^)
2021-03-15 21:20:33 +01:00

7 lines
147 B
Text

[CustomGet,CustomPut]
interface CSSStyleDeclaration {
readonly attribute unsigned long length;
CSSOMString item(unsigned long index);
};