diff options
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r-- | components/script/dom/mod.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs index 5bc19eab627..4f94ac8309f 100644 --- a/components/script/dom/mod.rs +++ b/components/script/dom/mod.rs @@ -32,8 +32,8 @@ //! * rooting pointers on the stack: //! the [`Root`](bindings/js/struct.Root.html) smart pointer; //! * tracing pointers in member fields: the [`JS`](bindings/js/struct.JS.html), -//! [`MutNullableHeap`](bindings/js/struct.MutNullableHeap.html) and -//! [`MutHeap`](bindings/js/struct.MutHeap.html) smart pointers and +//! [`MutNullableJS`](bindings/js/struct.MutNullableJS.html) and +//! [`MutJS`](bindings/js/struct.MutJS.html) smart pointers and //! [the tracing implementation](bindings/trace/index.html); //! * rooting pointers from across thread boundaries or in channels: the //! [`Trusted`](bindings/refcounted/struct.Trusted.html) smart pointer; @@ -217,13 +217,10 @@ pub mod abstractworkerglobalscope; pub mod activation; pub mod attr; pub mod beforeunloadevent; -mod create; -#[allow(unsafe_code)] -#[deny(missing_docs, non_snake_case)] pub mod bindings; pub mod blob; pub mod bluetooth; -pub mod bluetoothadvertisingdata; +pub mod bluetoothadvertisingevent; pub mod bluetoothcharacteristicproperties; pub mod bluetoothdevice; pub mod bluetoothremotegattcharacteristic; @@ -240,10 +237,12 @@ pub mod client; pub mod closeevent; pub mod comment; pub mod console; +mod create; pub mod crypto; pub mod css; pub mod cssfontfacerule; pub mod cssgroupingrule; +pub mod cssimportrule; pub mod csskeyframerule; pub mod csskeyframesrule; pub mod cssmediarule; @@ -370,6 +369,7 @@ pub mod location; pub mod mediaerror; pub mod medialist; pub mod mediaquerylist; +pub mod mediaquerylistevent; pub mod messageevent; pub mod mimetype; pub mod mimetypearray; |