diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2023-08-14 22:05:25 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-08-16 17:46:41 +0200 |
commit | f48b95e2e3879d38314ab84999f0c17055a660d5 (patch) | |
tree | da3f19b1d6645b57caf2694daf220000db14c6de /components/style/rule_tree/mod.rs | |
parent | 50d31686beb7292e9c265f3c375254c76a2c87d7 (diff) | |
download | servo-f48b95e2e3879d38314ab84999f0c17055a660d5.tar.gz servo-f48b95e2e3879d38314ab84999f0c17055a660d5.zip |
style: Move size of tests to compile-time tests in the style crate
Same reasoning as the previous commit.
Differential Revision: https://phabricator.services.mozilla.com/D146104
Diffstat (limited to 'components/style/rule_tree/mod.rs')
-rw-r--r-- | components/style/rule_tree/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/rule_tree/mod.rs b/components/style/rule_tree/mod.rs index c2339ee9907..01510e62070 100644 --- a/components/style/rule_tree/mod.rs +++ b/components/style/rule_tree/mod.rs @@ -20,7 +20,7 @@ mod map; mod source; mod unsafe_box; -pub use self::core::{RuleTree, StrongRuleNode, RULE_NODE_SIZE}; +pub use self::core::{RuleTree, StrongRuleNode}; pub use self::level::{CascadeLevel, ShadowCascadeOrder}; pub use self::source::StyleSource; |