``` import { CSSStyleDeclaration } from "cssstyle"; const css = new CSSStyleDeclaration(); css.setProperty("animation-name", "fooBar"); console.log(css.getPropertyValue("animation-name")); // outputs "foobar" on 5.3.6, "fooBar" on 5.3.5 ``` CSS spec says animation-name is case sensitive: https://drafts.csswg.org/css-animations/#typedef-keyframes-name