aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/cssstylesheet.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2024-11-24 02:35:14 -0500
committerGitHub <noreply@github.com>2024-11-24 07:35:14 +0000
commite956f3124c230549c6ef4a63e2c27e56d0965453 (patch)
tree816ba96fcb8470265f72629fe3e1b182e92972a6 /components/script/dom/cssstylesheet.rs
parent468f9cf014c9dc41e43974ab17fb790e42d7e6ee (diff)
downloadservo-e956f3124c230549c6ef4a63e2c27e56d0965453.tar.gz
servo-e956f3124c230549c6ef4a63e2c27e56d0965453.zip
Generate a trait abstracting over all known DOM interfaces (#34357)
* script: Generate trait for all DOM interfaces and parameterize generated Methods traits over it. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Update trait implementations with new generic type. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Formatting. Signed-off-by: Josh Matthews <josh@joshmatthews.net> --------- Signed-off-by: Josh Matthews <josh@joshmatthews.net>
Diffstat (limited to 'components/script/dom/cssstylesheet.rs')
-rw-r--r--components/script/dom/cssstylesheet.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/cssstylesheet.rs b/components/script/dom/cssstylesheet.rs
index a83c90e0f78..f25ffa14b8e 100644
--- a/components/script/dom/cssstylesheet.rs
+++ b/components/script/dom/cssstylesheet.rs
@@ -114,7 +114,7 @@ impl CSSStyleSheet {
}
}
-impl CSSStyleSheetMethods for CSSStyleSheet {
+impl CSSStyleSheetMethods<crate::DomTypeHolder> for CSSStyleSheet {
// https://drafts.csswg.org/cssom/#dom-cssstylesheet-cssrules
fn GetCssRules(&self) -> Fallible<DomRoot<CSSRuleList>> {
if !self.origin_clean.get() {