aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
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;
}