diff options
author | George Roman <george.roman.99@gmail.com> | 2019-02-13 22:21:52 +0200 |
---|---|---|
committer | George Roman <george.roman.99@gmail.com> | 2019-03-14 21:41:02 +0200 |
commit | 4b8282b3b164771e3351c2a85890167ab6d0ab7f (patch) | |
tree | 8a8d7ef29732300b5a24919524aa3e56f7e45e84 /components/script/lib.rs | |
parent | 431423388ee97fcbf23b5f7bbb6e8cf2c86740a5 (diff) | |
download | servo-4b8282b3b164771e3351c2a85890167ab6d0ab7f.tar.gz servo-4b8282b3b164771e3351c2a85890167ab6d0ab7f.zip |
Implement CDATASection interface and createCDATASection method
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index a1ba351888a..565cdbfc6c2 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -84,7 +84,7 @@ 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::{HTMLElementTypeId, NodeTypeId}; + pub use crate::dom::bindings::inheritance::{HTMLElementTypeId, NodeTypeId, TextTypeId}; pub use crate::dom::bindings::root::LayoutDom; pub use crate::dom::characterdata::LayoutCharacterDataHelpers; pub use crate::dom::document::{Document, LayoutDocumentHelpers, PendingRestyle}; |