diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-01-31 14:51:06 +0000 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-02-12 02:43:18 +0100 |
commit | 16fd7cad0c2d74dd3e90bb3cb59b6da7f40ec494 (patch) | |
tree | 96a29d552588a4bdc8ad9ada4e5a3eb26545cba5 /components/style/lib.rs | |
parent | f426b644ca179e40d009ec58afa643d1c5489af0 (diff) | |
download | servo-16fd7cad0c2d74dd3e90bb3cb59b6da7f40ec494.tar.gz servo-16fd7cad0c2d74dd3e90bb3cb59b6da7f40ec494.zip |
style: Add a style flag for the root element style.
This is needed to make the root element not a containing block in presence of
filters or what not.
Differential Revision: https://phabricator.services.mozilla.com/D61167
Diffstat (limited to 'components/style/lib.rs')
-rw-r--r-- | components/style/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/style/lib.rs b/components/style/lib.rs index 33862461aa9..aa855b8b55b 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -120,6 +120,8 @@ pub mod attr; pub mod author_styles; pub mod bezier; pub mod bloom; +#[path="properties/computed_value_flags.rs"] +pub mod computed_value_flags; pub mod context; pub mod counter_style; pub mod custom_properties; |