style: Allow animations and transitions on ::marker

As per the following change to the spec:

6b3d7240b5

The additional failure annotation is added because we don't currently treat
text-combine-upright as non-animatable and this patch exposes the existing bug
(bug 1654195).

Differential Revision: https://phabricator.services.mozilla.com/D84308
This commit is contained in:
Brian Birtles 2020-07-22 00:44:18 +00:00 committed by Emilio Cobos Álvarez
parent 5382a99adb
commit ad22c7a369

View file

@ -778,7 +778,9 @@ class PropertyRestrictions:
"direction",
"content",
"-moz-osx-font-smoothing",
] + PropertyRestrictions.spec(data, "css-fonts"))
] + PropertyRestrictions.spec(data, "css-fonts")
+ PropertyRestrictions.spec(data, "css-animations")
+ PropertyRestrictions.spec(data, "css-transitions"))
# https://www.w3.org/TR/webvtt1/#the-cue-pseudo-element
@staticmethod