aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorFernando Jiménez Moreno <ferjmoreno@gmail.com>2019-01-31 16:10:26 +0100
committerFernando Jiménez Moreno <ferjmoreno@gmail.com>2019-04-26 10:17:46 +0200
commit7c9e8aa4cc3131c42a9412e1fa3e4f99b4324763 (patch)
treed1efcca0aef19a5dd3c00d717e8e7ac8cecf4442 /components/script/lib.rs
parentbe06f1e9b346d16538ddac5dea468f346cb1f18c (diff)
downloadservo-7c9e8aa4cc3131c42a9412e1fa3e4f99b4324763.tar.gz
servo-7c9e8aa4cc3131c42a9412e1fa3e4f99b4324763.zip
First bits of shadow dom layout
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index a057540ae22..3f48e3d9118 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -84,7 +84,9 @@ mod webdriver_handlers;
///
/// TODO(emilio): A few of the FooHelpers can go away, presumably...
pub mod layout_exports {
- pub use crate::dom::bindings::inheritance::{CharacterDataTypeId, ElementTypeId};
+ pub use crate::dom::bindings::inheritance::{
+ CharacterDataTypeId, DocumentFragmentTypeId, ElementTypeId,
+ };
pub use crate::dom::bindings::inheritance::{HTMLElementTypeId, NodeTypeId, TextTypeId};
pub use crate::dom::bindings::root::LayoutDom;
pub use crate::dom::characterdata::LayoutCharacterDataHelpers;
@@ -92,6 +94,7 @@ pub mod layout_exports {
pub use crate::dom::element::{Element, LayoutElementHelpers, RawLayoutElementHelpers};
pub use crate::dom::node::NodeFlags;
pub use crate::dom::node::{LayoutNodeHelpers, Node};
+ pub use crate::dom::shadowroot::{LayoutShadowRootHelpers, ShadowRoot};
pub use crate::dom::text::Text;
}