1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:07:35 +00:00

LibWeb: Implement CSSStyleDeclaration.getPropertyValue(property)

This commit is contained in:
Andreas Kling 2021-09-12 20:44:17 +02:00
parent a72fd78713
commit a2f5589d3a
3 changed files with 15 additions and 0 deletions

View file

@ -4,4 +4,6 @@ interface CSSStyleDeclaration {
readonly attribute unsigned long length;
CSSOMString item(unsigned long index);
CSSOMString getPropertyValue(CSSOMString property);
};