css_ast/values/round_display/
mod.rs

1#![allow(warnings)]
2//! https://drafts.csswg.org/css-round-display-1/
3
4mod impls;
5use super::prelude::*;
6use impls::*;
7/// Represents the style value for `border-boundary` as defined in [css-round-display-1](https://drafts.csswg.org/css-round-display-1/#border-boundary).
8///
9/// The grammar is defined as:
10///
11/// ```text,ignore
12/// none | parent | display
13/// ```
14///
15/// https://drafts.csswg.org/css-round-display-1/#border-boundary
16#[syntax(" none | parent | display ")]
17#[derive(
18	Parse, Peek, ToSpan, ToCursors, DeclarationMetadata, SemanticEq, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash,
19)]
20#[declaration_metadata(
21    initial = "none",
22    inherits,
23    applies_to = Elements,
24    animation_type = Discrete,
25    property_group = RoundDisplay,
26    computed_value_type = Unknown,
27    canonical_order = "per grammar",
28    box_portion = Border,
29)]
30#[cfg_attr(feature = "serde", derive(serde::Serialize), serde())]
31#[cfg_attr(feature = "css_feature_data", derive(ToCSSFeature), css_feature("css.properties.border-boundary"))]
32#[cfg_attr(feature = "visitable", derive(Visitable), visit)]
33pub enum BorderBoundaryStyleValue {}