1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:27:45 +00:00

LibWeb: Allow indexing into CSSStyleDeclaration by number

The `item(unsigned long index)` method is marked as a getter in IDL, so
let's treat it as such.
This commit is contained in:
Sam Atkins 2023-09-29 16:48:28 +01:00 committed by Andreas Kling
parent 33e4a35d2d
commit 08cf35cf9a
2 changed files with 5 additions and 1 deletions

View file

@ -5,7 +5,7 @@ interface CSSStyleDeclaration {
[CEReactions] attribute CSSOMString cssText;
readonly attribute unsigned long length;
CSSOMString item(unsigned long index);
getter CSSOMString item(unsigned long index);
CSSOMString getPropertyValue(CSSOMString property);
CSSOMString getPropertyPriority(CSSOMString property);
@ -13,4 +13,6 @@ interface CSSStyleDeclaration {
[CEReactions] undefined setProperty(CSSOMString property, [LegacyNullToEmptyString] CSSOMString value, optional [LegacyNullToEmptyString] CSSOMString priority = "");
[CEReactions] CSSOMString removeProperty(CSSOMString property);
// FIXME: readonly attribute CSSRule? parentRule;
// FIXME: [CEReactions] attribute [LegacyNullToEmptyString] CSSOMString cssFloat;
};