css_ast/values/size_adjust/
mod.rs1#![allow(warnings)]
2mod impls;
5use super::prelude::*;
6use impls::*;
7#[syntax(" auto | none | <percentage [0,∞]> ")]
19#[derive(
20 Parse, Peek, ToSpan, ToCursors, DeclarationMetadata, SemanticEq, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash,
21)]
22#[declaration_metadata(
23 initial = "auto",
24 inherits,
25 applies_to = Elements,
26 percentages = Unknown,
27 animation_type = ByComputedValue,
28 property_group = SizeAdjust,
29 computed_value_type = Unknown,
30 canonical_order = "N/A",
31)]
32#[cfg_attr(feature = "serde", derive(serde::Serialize), serde())]
33#[cfg_attr(feature = "css_feature_data", derive(ToCSSFeature), css_feature("css.properties.text-size-adjust"))]
34#[cfg_attr(feature = "visitable", derive(Visitable), visit)]
35pub struct TextSizeAdjustStyleValue;