mirror of
https://github.com/servo/servo.git
synced 2025-08-16 19:05:33 +01:00
Do not use CVAS for the list-style-type property
This commit is contained in:
parent
7fc2c43551
commit
0254fd0635
4 changed files with 5 additions and 7 deletions
|
@ -342,7 +342,7 @@ impl ToCss for System {
|
|||
}
|
||||
|
||||
/// https://drafts.csswg.org/css-counter-styles/#typedef-symbol
|
||||
#[derive(Clone, Debug, Eq, PartialEq)]
|
||||
#[derive(Clone, Debug, Eq, PartialEq, ToComputedValue)]
|
||||
pub enum Symbol {
|
||||
/// <string>
|
||||
String(String),
|
||||
|
@ -489,7 +489,7 @@ impl Parse for Fallback {
|
|||
}
|
||||
|
||||
/// https://drafts.csswg.org/css-counter-styles/#descdef-counter-style-symbols
|
||||
#[derive(Clone, Debug, Eq, PartialEq)]
|
||||
#[derive(Clone, Debug, Eq, PartialEq, ToComputedValue)]
|
||||
pub struct Symbols(pub Vec<Symbol>);
|
||||
|
||||
impl Parse for Symbols {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue