diff --git a/src/servo/dom/bindings/domparser.rs b/src/servo/dom/bindings/domparser.rs index bada542d91b..3252b73862f 100644 --- a/src/servo/dom/bindings/domparser.rs +++ b/src/servo/dom/bindings/domparser.rs @@ -1,3 +1,7 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + use dom::bindings::codegen::DOMParserBinding; use dom::bindings::utils::{CacheableWrapper, WrapperCache}; use dom::bindings::utils::{BindingObject, DerivedWrapper}; diff --git a/src/servo/dom/bindings/text.rs b/src/servo/dom/bindings/text.rs index d5f8fe7581d..4dda1f89085 100644 --- a/src/servo/dom/bindings/text.rs +++ b/src/servo/dom/bindings/text.rs @@ -1,3 +1,7 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + use dom::bindings::element; use dom::bindings::node::unwrap; use dom::bindings::utils; @@ -83,4 +87,4 @@ pub fn create(cx: *JSContext, node: &mut AbstractNode) -> jsobj { JS_SetReservedSlot(obj.ptr, DOM_OBJECT_SLOT as u32, RUST_PRIVATE_TO_JSVAL(raw_ptr)); return obj; -} \ No newline at end of file +} diff --git a/src/servo/dom/clientrectlist.rs b/src/servo/dom/clientrectlist.rs index cd543f1d6ce..21a3b0e9907 100644 --- a/src/servo/dom/clientrectlist.rs +++ b/src/servo/dom/clientrectlist.rs @@ -1,3 +1,7 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + use dom::clientrect::ClientRect; use dom::bindings::utils::WrapperCache; diff --git a/src/servo/dom/htmlcollection.rs b/src/servo/dom/htmlcollection.rs index 51025cf6c10..4a645c29a67 100644 --- a/src/servo/dom/htmlcollection.rs +++ b/src/servo/dom/htmlcollection.rs @@ -1,3 +1,7 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + use dom::bindings::utils::WrapperCache; use dom::bindings::utils::{DOMString, ErrorResult}; use dom::node::AbstractNode;