mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-27 06:48:49 +00:00
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);
|
|
|
|
};
|