mirror of
https://github.com/SerenityOS/serenity
synced 2026-04-26 01:25:22 +02: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);
|
|
|
|
};
|