aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/lib.rs')
-rw-r--r--components/style/lib.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/components/style/lib.rs b/components/style/lib.rs
index 354950f9c15..6c4b1d5a2a9 100644
--- a/components/style/lib.rs
+++ b/components/style/lib.rs
@@ -72,7 +72,6 @@ extern crate num_cpus;
extern crate num_derive;
extern crate num_integer;
extern crate num_traits;
-extern crate ordered_float;
extern crate owning_ref;
extern crate parking_lot;
extern crate precomputed_hash;
@@ -120,6 +119,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;
@@ -173,10 +174,12 @@ pub mod values;
pub use crate::gecko_string_cache as string_cache;
#[cfg(feature = "gecko")]
pub use crate::gecko_string_cache::Atom;
+/// The namespace prefix type for Gecko, which is just an atom.
#[cfg(feature = "gecko")]
-pub use crate::gecko_string_cache::Atom as Prefix;
+pub type Prefix = crate::gecko_string_cache::Atom;
+/// The local name of an element for Gecko, which is just an atom.
#[cfg(feature = "gecko")]
-pub use crate::gecko_string_cache::Atom as LocalName;
+pub type LocalName = crate::gecko_string_cache::Atom;
#[cfg(feature = "gecko")]
pub use crate::gecko_string_cache::Namespace;