diff options
Diffstat (limited to 'components/script/dom')
-rw-r--r-- | components/script/dom/bindings/mod.rs | 13 | ||||
-rw-r--r-- | components/script/dom/mod.rs | 36 |
2 files changed, 24 insertions, 25 deletions
diff --git a/components/script/dom/bindings/mod.rs b/components/script/dom/bindings/mod.rs index 1ded213d0f4..d4236ba08f6 100644 --- a/components/script/dom/bindings/mod.rs +++ b/components/script/dom/bindings/mod.rs @@ -135,19 +135,19 @@ #![allow(unsafe_code)] #![deny(missing_docs, non_snake_case)] +pub mod callback; pub mod cell; +pub mod conversions; +pub mod error; pub mod global; pub mod js; -pub mod refcounted; -pub mod utils; -pub mod callback; -pub mod error; -pub mod conversions; -pub mod proxyhandler; pub mod num; +pub mod proxyhandler; +pub mod refcounted; pub mod str; pub mod structuredclone; pub mod trace; +pub mod utils; /// Generated JS-Rust bindings. #[allow(missing_docs, non_snake_case)] @@ -179,4 +179,3 @@ pub mod codegen { include!(concat!(env!("OUT_DIR"), "/UnionTypes.rs")); } } - diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs index a0f436e513b..77c7766c8eb 100644 --- a/components/script/dom/mod.rs +++ b/components/script/dom/mod.rs @@ -199,18 +199,13 @@ pub mod canvasgradient; pub mod canvaspattern; pub mod canvasrenderingcontext2d; pub mod characterdata; -pub mod css; -pub mod cssstyledeclaration; -pub mod dompoint; -pub mod dompointreadonly; -pub mod domrect; -pub mod domrectlist; -pub mod domstringmap; pub mod closeevent; pub mod comment; pub mod console; mod create; pub mod crypto; +pub mod css; +pub mod cssstyledeclaration; pub mod customevent; pub mod dedicatedworkerglobalscope; pub mod document; @@ -219,6 +214,11 @@ pub mod documenttype; pub mod domexception; pub mod domimplementation; pub mod domparser; +pub mod dompoint; +pub mod dompointreadonly; +pub mod domrect; +pub mod domrectlist; +pub mod domstringmap; pub mod domtokenlist; pub mod element; pub mod errorevent; @@ -280,15 +280,15 @@ pub mod htmlprogresselement; pub mod htmlquoteelement; pub mod htmlscriptelement; pub mod htmlselectelement; -pub mod htmlspanelement; pub mod htmlsourceelement; +pub mod htmlspanelement; pub mod htmlstyleelement; -pub mod htmltableelement; pub mod htmltablecaptionelement; pub mod htmltablecellelement; +pub mod htmltablecolelement; pub mod htmltabledatacellelement; +pub mod htmltableelement; pub mod htmltableheadercellelement; -pub mod htmltablecolelement; pub mod htmltablerowelement; pub mod htmltablesectionelement; pub mod htmltemplateelement; @@ -297,8 +297,8 @@ pub mod htmltimeelement; pub mod htmltitleelement; pub mod htmltrackelement; pub mod htmlulistelement; -pub mod htmlvideoelement; pub mod htmlunknownelement; +pub mod htmlvideoelement; pub mod imagedata; pub mod keyboardevent; pub mod location; @@ -310,9 +310,9 @@ pub mod navigatorinfo; pub mod node; pub mod nodeiterator; pub mod nodelist; -pub mod processinginstruction; pub mod performance; pub mod performancetiming; +pub mod processinginstruction; pub mod progressevent; pub mod range; pub mod screen; @@ -330,17 +330,17 @@ pub mod urlsearchparams; pub mod userscripts; pub mod validitystate; pub mod virtualmethods; -pub mod webglobject; +pub mod webglactiveinfo; pub mod webglbuffer; +pub mod webglframebuffer; +pub mod webglobject; pub mod webglprogram; +pub mod webglrenderbuffer; pub mod webglrenderingcontext; pub mod webglshader; -pub mod webgluniformlocation; -pub mod webgltexture; -pub mod webglframebuffer; -pub mod webglrenderbuffer; -pub mod webglactiveinfo; pub mod webglshaderprecisionformat; +pub mod webgltexture; +pub mod webgluniformlocation; pub mod websocket; pub mod window; pub mod worker; |