Files
servo/components/script_bindings/codegen
Rocketjumper 9c05abe5f3 Fixed codegen to prevent double declaration of -webkit- prefixed CSS properties (#40549)
Removed the following on `script_bindings/codegen/run.py`:

```
# https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-webkit-cased-attribute
    if property_name.startswith("-webkit-"):
        yield "".join(camel_case(property_name, True))
```
Credits to @jdm !


Fixes: issue #40545

---------

Signed-off-by: Richard Tjokroutomo <richard.tjokro2@gmail.com>
2025-11-11 03:24:06 +00:00
..