diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-09-18 14:44:48 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-09-18 14:44:48 -0600 |
commit | d1b85de762c0193276010a019f931526c34c04ce (patch) | |
tree | 0b371fa5d7fd2674793843f4c3034a9ff81c25e9 /components/script/dom | |
parent | 9b939546a660fb24985e54aba1c2c47d1cf057a4 (diff) | |
parent | 6565e7b02fafea933e27e59bed1db876b56ac005 (diff) | |
download | servo-d1b85de762c0193276010a019f931526c34c04ce.tar.gz servo-d1b85de762c0193276010a019f931526c34c04ce.zip |
Auto merge of #7680 - Mylainos:Issue-#7390, r=metajack
fixes #7390 : tidy now check the order of mod declarations even whith attribute
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7680)
<!-- Reviewable:end -->
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; |