From bc6926d1feea04b41879d43507509636db29b377 Mon Sep 17 00:00:00 2001 From: Oriol Brufau Date: Tue, 1 Apr 2025 13:20:46 +0200 Subject: Implement CSSNestedDeclarations (#36248) This is the CSSOM interface that represents a nested declarations rule. https://drafts.csswg.org/css-nesting/#the-cssnestrule Testing: `/_mozilla/mozilla/interfaces.https.html`. And once `CSSStyleRule` becomes a `CSSGroupingRule` subclass, this will be further covered by `/css/css-nestting/`. This is part of #36245 Signed-off-by: Oriol Brufau --- components/script/dom/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'components/script/dom/mod.rs') diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs index a34e0b44221..40db03ed655 100644 --- a/components/script/dom/mod.rs +++ b/components/script/dom/mod.rs @@ -271,6 +271,7 @@ pub(crate) mod csslayerblockrule; pub(crate) mod csslayerstatementrule; pub(crate) mod cssmediarule; pub(crate) mod cssnamespacerule; +pub(crate) mod cssnesteddeclarations; pub(crate) mod cssrule; pub(crate) mod cssrulelist; pub(crate) mod cssstyledeclaration; -- cgit v1.2.3