aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/cssrule.rs
diff options
context:
space:
mode:
authorbors-servo <infra@servo.org>2023-06-12 12:11:30 +0200
committerGitHub <noreply@github.com>2023-06-12 12:11:30 +0200
commit9260683b5fbc7fa9fe2cc75bbfccbcd9d0e245fd (patch)
tree7f2372c5064ae230bea51aa5a54d06fd0eaff796 /components/script/dom/cssrule.rs
parent1d69e7b2347ff6aa40a9f3dc4e20f0edf14cf80b (diff)
parentaefaa3f16cd3d8e2df7399f0d10022cd2cebd5a0 (diff)
downloadservo-9260683b5fbc7fa9fe2cc75bbfccbcd9d0e245fd.tar.gz
servo-9260683b5fbc7fa9fe2cc75bbfccbcd9d0e245fd.zip
Auto merge of #29848 - Loirooriol:sync, r=mrobinson
Backport several style changes from Gecko (4) <!-- Please describe your changes on the following line: --> This continues https://github.com/servo/servo/pull/29816. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [ ] These changes fix #___ (GitHub issue number if applicable) <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because ___ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'components/script/dom/cssrule.rs')
-rw-r--r--components/script/dom/cssrule.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/cssrule.rs b/components/script/dom/cssrule.rs
index 853a9c9b643..e23e6721301 100644
--- a/components/script/dom/cssrule.rs
+++ b/components/script/dom/cssrule.rs
@@ -105,7 +105,8 @@ impl CSSRule {
},
StyleCssRule::Page(_) => unreachable!(),
StyleCssRule::Document(_) => unimplemented!(), // TODO
- StyleCssRule::Layer(_) => unimplemented!(), // TODO
+ StyleCssRule::LayerBlock(_) => unimplemented!(), // TODO
+ StyleCssRule::LayerStatement(_) => unimplemented!(), // TODO
StyleCssRule::ScrollTimeline(_) => unimplemented!(), // TODO
}
}