Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .csswg-drafts-sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
66e3ac1f42ef644626a635f37dff23d7c639e287
ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
29 changes: 29 additions & 0 deletions crates/css_ast/src/types/baseline_metric.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
use super::prelude::*;

/// <https://drafts.csswg.org/css-inline-3/#typedef-baseline-metric>
///
/// ```text,ignore
/// <baseline-metric> = text-bottom | alphabetic | ideographic | middle | central | mathematical | hanging | text-top
/// ```
#[derive(Parse, Peek, IntoCursor, ToCursors, Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize), serde())]
#[cfg_attr(feature = "visitable", derive(csskit_derives::Visitable), visit(self))]
#[derive(csskit_derives::NodeWithMetadata)]
pub enum BaselineMetric {
#[atom(CssAtomSet::TextBottom)]
TextBottom(T![Ident]),
#[atom(CssAtomSet::Alphabetic)]
Alphabetic(T![Ident]),
#[atom(CssAtomSet::Ideographic)]
Ideographic(T![Ident]),
#[atom(CssAtomSet::Middle)]
Middle(T![Ident]),
#[atom(CssAtomSet::Central)]
Central(T![Ident]),
#[atom(CssAtomSet::Mathematical)]
Mathematical(T![Ident]),
#[atom(CssAtomSet::Hanging)]
Hanging(T![Ident]),
#[atom(CssAtomSet::TextTop)]
TextTop(T![Ident]),
}
3 changes: 3 additions & 0 deletions crates/css_ast/src/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ mod animateable_feature;
mod animation_action;
mod attachment;
mod auto_line_color_list;

mod auto_line_style_list;
mod auto_line_width_list;
mod auto_or;
mod autonone_or;
mod autospace;
mod baseline_metric;
mod baseline_position;
mod basic_shape_rect;
mod bg_clip;
Expand Down Expand Up @@ -103,6 +105,7 @@ pub use auto_line_width_list::*;
pub use auto_or::*;
pub use autonone_or::*;
pub use autospace::*;
pub use baseline_metric::*;
pub use baseline_position::*;
pub use basic_shape_rect::*;
pub use bg_clip::*;
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/align/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-align-3/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/anchor_position/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-anchor-position-2/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/animations/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-animations-2/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/backgrounds/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-backgrounds-4/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/borders/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-borders-4/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/box/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-box-4/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/break/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-break-4/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/cascade/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-cascade-6/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/color/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-color-6/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/color_adjust/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-color-adjust-1/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/color_hdr/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-color-hdr-1/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/compositing/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/compositing-2/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/conditional/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-conditional-5/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/contain/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-contain-4/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/content/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-content-3/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/display/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-display-4/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/exclusions/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-exclusions-1/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/fill_stroke/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/fill-stroke-3/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/filter_effects/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/filter-effects-2/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/flexbox/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-flexbox-1/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/fonts/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-fonts-5/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/forms/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-forms-1/
Expand Down
10 changes: 5 additions & 5 deletions crates/css_ast/src/values/gaps/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-gaps-1/
Expand Down Expand Up @@ -194,11 +194,11 @@ pub struct ColumnRuleEdgeInsetStartStyleValue;
/// The grammar is defined as:
///
/// ```text,ignore
/// <length-percentage> <length-percentage>? [/ <length-percentage> <length-percentage>?]?
/// <'column-rule-edge-inset'> [ / <'column-rule-interior-inset'> ]?
/// ```
///
/// https://drafts.csswg.org/css-gaps-1/#column-rule-inset
#[syntax(" <length-percentage> <length-percentage>? [/ <length-percentage> <length-percentage>?]? ")]
#[syntax(" <'column-rule-edge-inset'> [ / <'column-rule-interior-inset'> ]? ")]
#[derive(
Parse, Peek, ToSpan, ToCursors, DeclarationMetadata, SemanticEq, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash,
)]
Expand Down Expand Up @@ -637,11 +637,11 @@ pub struct RowRuleEdgeInsetStartStyleValue;
/// The grammar is defined as:
///
/// ```text,ignore
/// <length-percentage> <length-percentage>? [/ <length-percentage> <length-percentage>?]?
/// <'column-rule-edge-inset'> [ / <'column-rule-interior-inset'> ]?
/// ```
///
/// https://drafts.csswg.org/css-gaps-1/#row-rule-inset
#[syntax(" <length-percentage> <length-percentage>? [/ <length-percentage> <length-percentage>?]? ")]
#[syntax(" <'column-rule-edge-inset'> [ / <'column-rule-interior-inset'> ]? ")]
#[derive(
Parse, Peek, ToSpan, ToCursors, DeclarationMetadata, SemanticEq, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash,
)]
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/gcpm/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-gcpm-4/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/grid/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-grid-3/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/image_animation/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-image-animation-1/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/images/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-images-5/
Expand Down
12 changes: 6 additions & 6 deletions crates/css_ast/src/values/inline/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-inline-3/
Expand All @@ -14,11 +14,11 @@ use impls::*;
/// The grammar is defined as:
///
/// ```text,ignore
/// baseline | text-bottom | alphabetic | ideographic | middle | central | mathematical | text-top
/// baseline | <baseline-metric>
/// ```
///
/// https://drafts.csswg.org/css-inline-3/#alignment-baseline
#[syntax(" baseline | text-bottom | alphabetic | ideographic | middle | central | mathematical | text-top ")]
#[syntax(" baseline | <baseline-metric> ")]
#[derive(
Parse, Peek, ToSpan, ToCursors, DeclarationMetadata, SemanticEq, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash,
)]
Expand Down Expand Up @@ -102,11 +102,11 @@ pub enum BaselineSourceStyleValue {}
/// The grammar is defined as:
///
/// ```text,ignore
/// auto | text-bottom | alphabetic | ideographic | middle | central | mathematical | hanging | text-top
/// auto | <baseline-metric>
/// ```
///
/// https://drafts.csswg.org/css-inline-3/#dominant-baseline
#[syntax(" auto | text-bottom | alphabetic | ideographic | middle | central | mathematical | hanging | text-top ")]
#[syntax(" auto | <baseline-metric> ")]
#[derive(
Parse, Peek, ToSpan, ToCursors, DeclarationMetadata, SemanticEq, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash,
)]
Expand All @@ -123,7 +123,7 @@ pub enum BaselineSourceStyleValue {}
#[cfg_attr(feature = "css_feature_data", derive(ToCSSFeature), css_feature("css.properties.dominant-baseline"))]
#[cfg_attr(feature = "visitable", derive(Visitable), visit)]
#[derive(csskit_derives::NodeWithMetadata)]
pub enum DominantBaselineStyleValue {}
pub struct DominantBaselineStyleValue;

// /// Represents the style value for `initial-letter` as defined in [css-inline-3](https://drafts.csswg.org/css-inline-3/#initial-letter).
// ///
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/line_grid/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-line-grid-1/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/link_params/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-link-params-1/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/lists/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-lists-3/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/logical/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-logical-1/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/masking/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-masking-1/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/motion/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/motion-1/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/multicol/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-multicol-2/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/nav/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-nav-1/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/overflow/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-overflow-5/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/overscroll/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-overscroll-1/
Expand Down
2 changes: 1 addition & 1 deletion crates/css_ast/src/values/page/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// AUTO-GENERATED from w3c/csswg-drafts
// Commit: https://github.com/w3c/csswg-drafts/commit/66e3ac1f42ef644626a635f37dff23d7c639e287
// Commit: https://github.com/w3c/csswg-drafts/commit/ca3f9e7c7c278ae42ec8642e3d8999207cef9eb0
// Do not edit this file directly.
#![allow(warnings)]
//! https://drafts.csswg.org/css-page-4/
Expand Down
Loading