+ CSS.registerProperty({ + name: "--my-font-size", + syntax: "<length>", + initialValue: "0px", + inherits: false + }); ++ + the following will produce a dependency cycle: + +
+ div { + --my-font-size: 10em; + font-size: var(--my-font-size); + } ++ + and ''font-size'' will behave as if the value ''unset'' was specified. +