mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
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:
parent
5382a99adb
commit
ad22c7a369
1 changed files with 3 additions and 1 deletions
|
@ -778,7 +778,9 @@ class PropertyRestrictions:
|
||||||
"direction",
|
"direction",
|
||||||
"content",
|
"content",
|
||||||
"-moz-osx-font-smoothing",
|
"-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
|
# https://www.w3.org/TR/webvtt1/#the-cue-pseudo-element
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue