mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
You can now access an element's inline style via Element.style. The interface is not very capable yet though. :^)
7 lines
125 B
Plaintext
7 lines
125 B
Plaintext
interface CSSStyleDeclaration {
|
|
|
|
readonly attribute unsigned long length;
|
|
CSSOMString item(unsigned long index);
|
|
|
|
};
|