aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/servo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/servo.rs')
-rw-r--r--components/style/servo.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/components/style/servo.rs b/components/style/servo.rs
new file mode 100644
index 00000000000..56aef8f6210
--- /dev/null
+++ b/components/style/servo.rs
@@ -0,0 +1,15 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+use context;
+use data;
+use selector_impl::ServoSelectorImpl;
+use selector_matching;
+use stylesheets;
+
+/// Concrete types for servo Style implementation
+pub type Stylesheet = stylesheets::Stylesheet<ServoSelectorImpl>;
+pub type PrivateStyleData = data::PrivateStyleData<ServoSelectorImpl>;
+pub type Stylist = selector_matching::Stylist<ServoSelectorImpl>;
+pub type StylistWrapper = context::StylistWrapper<ServoSelectorImpl>;
+pub type SharedStyleContext = context::SharedStyleContext<ServoSelectorImpl>;