mirror of
https://github.com/servo/servo.git
synced 2025-08-04 21:20:23 +01:00
Auto merge of #8221 - wenderen:8130-reorganise, r=jdm
move modules around for #8130 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8221) <!-- Reviewable:end -->
This commit is contained in:
commit
daad09d442
150 changed files with 536 additions and 496 deletions
|
@ -33,8 +33,8 @@ use inline::{InlineFragmentNodeInfo, LAST_FRAGMENT_OF_ELEMENT};
|
||||||
use list_item::{ListItemFlow, ListStyleTypeContent};
|
use list_item::{ListItemFlow, ListStyleTypeContent};
|
||||||
use multicol::MulticolFlow;
|
use multicol::MulticolFlow;
|
||||||
use parallel;
|
use parallel;
|
||||||
use script::dom::bindings::codegen::InheritTypes::{CharacterDataTypeId, ElementTypeId};
|
use script::dom::bindings::inheritance::{CharacterDataTypeId, ElementTypeId};
|
||||||
use script::dom::bindings::codegen::InheritTypes::{HTMLElementTypeId, NodeTypeId};
|
use script::dom::bindings::inheritance::{HTMLElementTypeId, NodeTypeId};
|
||||||
use script::dom::htmlobjectelement::is_image_data;
|
use script::dom::htmlobjectelement::is_image_data;
|
||||||
use std::borrow::ToOwned;
|
use std::borrow::ToOwned;
|
||||||
use std::collections::LinkedList;
|
use std::collections::LinkedList;
|
||||||
|
|
|
@ -10,7 +10,7 @@ use animation;
|
||||||
use context::SharedLayoutContext;
|
use context::SharedLayoutContext;
|
||||||
use data::LayoutDataWrapper;
|
use data::LayoutDataWrapper;
|
||||||
use incremental::{self, RestyleDamage};
|
use incremental::{self, RestyleDamage};
|
||||||
use script::dom::bindings::codegen::InheritTypes::{CharacterDataTypeId, NodeTypeId};
|
use script::dom::bindings::inheritance::{CharacterDataTypeId, NodeTypeId};
|
||||||
use script::layout_interface::Animation;
|
use script::layout_interface::Animation;
|
||||||
use selectors::bloom::BloomFilter;
|
use selectors::bloom::BloomFilter;
|
||||||
use selectors::matching::{CommonStyleAffectingAttributeMode, CommonStyleAffectingAttributes};
|
use selectors::matching::{CommonStyleAffectingAttributeMode, CommonStyleAffectingAttributes};
|
||||||
|
|
|
@ -37,9 +37,8 @@ use incremental::RestyleDamage;
|
||||||
use msg::constellation_msg::PipelineId;
|
use msg::constellation_msg::PipelineId;
|
||||||
use opaque_node::OpaqueNodeMethods;
|
use opaque_node::OpaqueNodeMethods;
|
||||||
use script::dom::attr::AttrValue;
|
use script::dom::attr::AttrValue;
|
||||||
use script::dom::bindings::codegen::InheritTypes::{CharacterDataTypeId, ElementTypeId};
|
use script::dom::bindings::inheritance::{Castable, CharacterDataTypeId, ElementTypeId};
|
||||||
use script::dom::bindings::codegen::InheritTypes::{HTMLElementTypeId, NodeTypeId};
|
use script::dom::bindings::inheritance::{HTMLElementTypeId, NodeTypeId};
|
||||||
use script::dom::bindings::conversions::Castable;
|
|
||||||
use script::dom::bindings::js::LayoutJS;
|
use script::dom::bindings::js::LayoutJS;
|
||||||
use script::dom::characterdata::LayoutCharacterDataHelpers;
|
use script::dom::characterdata::LayoutCharacterDataHelpers;
|
||||||
use script::dom::document::{Document, LayoutDocumentHelpers};
|
use script::dom::document::{Document, LayoutDocumentHelpers};
|
||||||
|
|
|
@ -16,13 +16,13 @@ pub fn expand_reflector(cx: &mut ExtCtxt, span: Span, _: &MetaItem, annotatable:
|
||||||
let struct_name = item.ident;
|
let struct_name = item.ident;
|
||||||
// This path has to be hardcoded, unfortunately, since we can't resolve paths at expansion time
|
// This path has to be hardcoded, unfortunately, since we can't resolve paths at expansion time
|
||||||
match def.fields.iter().find(
|
match def.fields.iter().find(
|
||||||
|f| match_ty_unwrap(&*f.node.ty, &["dom", "bindings", "utils", "Reflector"]).is_some()) {
|
|f| match_ty_unwrap(&*f.node.ty, &["dom", "bindings", "reflector", "Reflector"]).is_some()) {
|
||||||
// If it has a field that is a Reflector, use that
|
// If it has a field that is a Reflector, use that
|
||||||
Some(f) => {
|
Some(f) => {
|
||||||
let field_name = f.node.ident();
|
let field_name = f.node.ident();
|
||||||
let impl_item = quote_item!(cx,
|
let impl_item = quote_item!(cx,
|
||||||
impl ::dom::bindings::utils::Reflectable for $struct_name {
|
impl ::dom::bindings::reflector::Reflectable for $struct_name {
|
||||||
fn reflector<'a>(&'a self) -> &'a ::dom::bindings::utils::Reflector {
|
fn reflector<'a>(&'a self) -> &'a ::dom::bindings::reflector::Reflector {
|
||||||
&self.$field_name
|
&self.$field_name
|
||||||
}
|
}
|
||||||
fn init_reflector(&mut self, obj: *mut ::js::jsapi::JSObject) {
|
fn init_reflector(&mut self, obj: *mut ::js::jsapi::JSObject) {
|
||||||
|
@ -36,8 +36,8 @@ pub fn expand_reflector(cx: &mut ExtCtxt, span: Span, _: &MetaItem, annotatable:
|
||||||
None => {
|
None => {
|
||||||
let field_name = def.fields[0].node.ident();
|
let field_name = def.fields[0].node.ident();
|
||||||
let impl_item = quote_item!(cx,
|
let impl_item = quote_item!(cx,
|
||||||
impl ::dom::bindings::utils::Reflectable for $struct_name {
|
impl ::dom::bindings::reflector::Reflectable for $struct_name {
|
||||||
fn reflector<'a>(&'a self) -> &'a ::dom::bindings::utils::Reflector {
|
fn reflector<'a>(&'a self) -> &'a ::dom::bindings::reflector::Reflector {
|
||||||
self.$field_name.reflector()
|
self.$field_name.reflector()
|
||||||
}
|
}
|
||||||
fn init_reflector(&mut self, obj: *mut ::js::jsapi::JSObject) {
|
fn init_reflector(&mut self, obj: *mut ::js::jsapi::JSObject) {
|
||||||
|
|
|
@ -8,8 +8,9 @@ use devtools_traits::{EvaluateJSReply, Modification, NodeInfo, TimelineMarker, T
|
||||||
use dom::bindings::codegen::Bindings::DOMRectBinding::{DOMRectMethods};
|
use dom::bindings::codegen::Bindings::DOMRectBinding::{DOMRectMethods};
|
||||||
use dom::bindings::codegen::Bindings::DocumentBinding::DocumentMethods;
|
use dom::bindings::codegen::Bindings::DocumentBinding::DocumentMethods;
|
||||||
use dom::bindings::codegen::Bindings::ElementBinding::{ElementMethods};
|
use dom::bindings::codegen::Bindings::ElementBinding::{ElementMethods};
|
||||||
use dom::bindings::conversions::{Castable, FromJSValConvertible, jsstring_to_str};
|
use dom::bindings::conversions::{FromJSValConvertible, jsstring_to_str};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use dom::node::Node;
|
use dom::node::Node;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use dom::event::{Event, EventBubbles, EventCancelable};
|
use dom::event::{Event, EventBubbles, EventCancelable};
|
||||||
use dom::eventtarget::EventTarget;
|
use dom::eventtarget::EventTarget;
|
||||||
|
|
|
@ -6,11 +6,11 @@ use cssparser::RGBA;
|
||||||
use devtools_traits::AttrInfo;
|
use devtools_traits::AttrInfo;
|
||||||
use dom::bindings::cell::DOMRefCell;
|
use dom::bindings::cell::DOMRefCell;
|
||||||
use dom::bindings::codegen::Bindings::AttrBinding::{self, AttrMethods};
|
use dom::bindings::codegen::Bindings::AttrBinding::{self, AttrMethods};
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, MutNullableHeap};
|
use dom::bindings::js::{JS, MutNullableHeap};
|
||||||
use dom::bindings::js::{LayoutJS, Root, RootedReference};
|
use dom::bindings::js::{LayoutJS, Root, RootedReference};
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::element::{AttributeMutation, Element};
|
use dom::element::{AttributeMutation, Element};
|
||||||
use dom::values::UNSIGNED_LONG_MAX;
|
use dom::values::UNSIGNED_LONG_MAX;
|
||||||
use dom::virtualmethods::vtable_for;
|
use dom::virtualmethods::vtable_for;
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
use dom::bindings::error::{Error, Fallible};
|
use dom::bindings::error::{Error, Fallible};
|
||||||
use dom::bindings::global::global_object_for_js_object;
|
use dom::bindings::global::global_object_for_js_object;
|
||||||
use dom::bindings::utils::Reflectable;
|
use dom::bindings::reflector::Reflectable;
|
||||||
use js::jsapi::GetGlobalForObjectCrossCompartment;
|
use js::jsapi::GetGlobalForObjectCrossCompartment;
|
||||||
use js::jsapi::{Heap, MutableHandleObject, RootedObject, RootedValue};
|
use js::jsapi::{Heap, MutableHandleObject, RootedObject, RootedValue};
|
||||||
use js::jsapi::{IsCallable, JSContext, JSObject, JS_WrapObject};
|
use js::jsapi::{IsCallable, JSContext, JSObject, JS_WrapObject};
|
||||||
|
|
|
@ -5201,6 +5201,7 @@ class CGBindingRoot(CGThing):
|
||||||
'dom::bindings::global::global_object_for_js_object',
|
'dom::bindings::global::global_object_for_js_object',
|
||||||
'dom::bindings::js::{JS, Root, RootedReference}',
|
'dom::bindings::js::{JS, Root, RootedReference}',
|
||||||
'dom::bindings::js::{OptionalRootedReference}',
|
'dom::bindings::js::{OptionalRootedReference}',
|
||||||
|
'dom::bindings::reflector::{Reflectable}',
|
||||||
'dom::bindings::utils::{create_dom_global, do_create_interface_objects}',
|
'dom::bindings::utils::{create_dom_global, do_create_interface_objects}',
|
||||||
'dom::bindings::utils::ConstantSpec',
|
'dom::bindings::utils::ConstantSpec',
|
||||||
'dom::bindings::utils::{DOMClass}',
|
'dom::bindings::utils::{DOMClass}',
|
||||||
|
@ -5210,7 +5211,6 @@ class CGBindingRoot(CGThing):
|
||||||
'dom::bindings::utils::{finalize_global, trace_global}',
|
'dom::bindings::utils::{finalize_global, trace_global}',
|
||||||
'dom::bindings::utils::has_property_on_prototype',
|
'dom::bindings::utils::has_property_on_prototype',
|
||||||
'dom::bindings::utils::is_platform_object',
|
'dom::bindings::utils::is_platform_object',
|
||||||
'dom::bindings::utils::{Reflectable}',
|
|
||||||
'dom::bindings::utils::throwing_constructor',
|
'dom::bindings::utils::throwing_constructor',
|
||||||
'dom::bindings::utils::get_dictionary_property',
|
'dom::bindings::utils::get_dictionary_property',
|
||||||
'dom::bindings::utils::set_dictionary_property',
|
'dom::bindings::utils::set_dictionary_property',
|
||||||
|
@ -5919,10 +5919,11 @@ class GlobalGenRoots():
|
||||||
|
|
||||||
descriptors = config.getDescriptors(register=True, isCallback=False)
|
descriptors = config.getDescriptors(register=True, isCallback=False)
|
||||||
imports = [CGGeneric("use dom::types::*;\n"),
|
imports = [CGGeneric("use dom::types::*;\n"),
|
||||||
CGGeneric("use dom::bindings::conversions::{Castable, DerivedFrom, get_dom_class};\n"),
|
CGGeneric("use dom::bindings::conversions::{DerivedFrom, get_dom_class};\n"),
|
||||||
|
CGGeneric("use dom::bindings::inheritance::Castable;\n"),
|
||||||
CGGeneric("use dom::bindings::js::{JS, LayoutJS, Root};\n"),
|
CGGeneric("use dom::bindings::js::{JS, LayoutJS, Root};\n"),
|
||||||
CGGeneric("use dom::bindings::trace::JSTraceable;\n"),
|
CGGeneric("use dom::bindings::trace::JSTraceable;\n"),
|
||||||
CGGeneric("use dom::bindings::utils::Reflectable;\n"),
|
CGGeneric("use dom::bindings::reflector::Reflectable;\n"),
|
||||||
CGGeneric("use js::jsapi::JSTracer;\n\n"),
|
CGGeneric("use js::jsapi::JSTracer;\n\n"),
|
||||||
CGGeneric("use std::mem;\n\n")]
|
CGGeneric("use std::mem;\n\n")]
|
||||||
allprotos = []
|
allprotos = []
|
||||||
|
@ -5959,8 +5960,8 @@ class GlobalGenRoots():
|
||||||
("ID used by interfaces that are not castable.", "Alone"),
|
("ID used by interfaces that are not castable.", "Alone"),
|
||||||
]
|
]
|
||||||
topTypeVariants += [
|
topTypeVariants += [
|
||||||
("ID used by interfaces that derive from %s." % name, "%s(%sTypeId)" % (name, name))
|
("ID used by interfaces that derive from %s." % typeName, "%s(%sTypeId)" % (typeName, typeName))
|
||||||
for name in topTypes
|
for typeName in topTypes
|
||||||
]
|
]
|
||||||
topTypeVariantsAsStrings = [CGGeneric("/// %s\n%s," % variant) for variant in topTypeVariants]
|
topTypeVariantsAsStrings = [CGGeneric("/// %s\n%s," % variant) for variant in topTypeVariants]
|
||||||
typeIdCode.append(CGWrapper(CGIndenter(CGList(topTypeVariantsAsStrings, "\n"), 4),
|
typeIdCode.append(CGWrapper(CGIndenter(CGList(topTypeVariantsAsStrings, "\n"), 4),
|
||||||
|
@ -5977,7 +5978,7 @@ class GlobalGenRoots():
|
||||||
variants = []
|
variants = []
|
||||||
if not config.getInterface(base).getExtendedAttribute("Abstract"):
|
if not config.getInterface(base).getExtendedAttribute("Abstract"):
|
||||||
variants.append(CGGeneric(base))
|
variants.append(CGGeneric(base))
|
||||||
variants += [CGGeneric(type_id_variant(name)) for name in derived]
|
variants += [CGGeneric(type_id_variant(derivedName)) for derivedName in derived]
|
||||||
derives = "Clone, Copy, Debug"
|
derives = "Clone, Copy, Debug"
|
||||||
if base != 'EventTarget' and base != 'HTMLElement':
|
if base != 'EventTarget' and base != 'HTMLElement':
|
||||||
derives += ", PartialEq"
|
derives += ", PartialEq"
|
||||||
|
|
|
@ -34,10 +34,12 @@
|
||||||
|
|
||||||
use core::nonzero::NonZero;
|
use core::nonzero::NonZero;
|
||||||
use dom::bindings::error::throw_type_error;
|
use dom::bindings::error::throw_type_error;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::num::Finite;
|
use dom::bindings::num::Finite;
|
||||||
|
use dom::bindings::reflector::{Reflectable, Reflector};
|
||||||
use dom::bindings::str::{ByteString, USVString};
|
use dom::bindings::str::{ByteString, USVString};
|
||||||
use dom::bindings::utils::{DOMClass, Reflectable, Reflector};
|
use dom::bindings::utils::DOMClass;
|
||||||
use js;
|
use js;
|
||||||
use js::glue::{GetProxyPrivate, IsWrapper, RUST_JS_NumberValue};
|
use js::glue::{GetProxyPrivate, IsWrapper, RUST_JS_NumberValue};
|
||||||
use js::glue::{RUST_JSID_IS_STRING, RUST_JSID_TO_STRING, UnwrapObject};
|
use js::glue::{RUST_JSID_IS_STRING, RUST_JSID_TO_STRING, UnwrapObject};
|
||||||
|
@ -55,7 +57,6 @@ use libc;
|
||||||
use num::Float;
|
use num::Float;
|
||||||
use num::traits::{Bounded, Zero};
|
use num::traits::{Bounded, Zero};
|
||||||
use std::borrow::ToOwned;
|
use std::borrow::ToOwned;
|
||||||
use std::mem;
|
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
use std::{char, ptr, slice};
|
use std::{char, ptr, slice};
|
||||||
use util::str::DOMString;
|
use util::str::DOMString;
|
||||||
|
@ -107,32 +108,6 @@ pub trait IDLInterface {
|
||||||
fn derives(&'static DOMClass) -> bool;
|
fn derives(&'static DOMClass) -> bool;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A trait to hold the cast functions of IDL interfaces that either derive
|
|
||||||
/// or are derived from other interfaces.
|
|
||||||
pub trait Castable: IDLInterface + Reflectable + Sized {
|
|
||||||
/// Check whether a DOM object implements one of its deriving interfaces.
|
|
||||||
fn is<T>(&self) -> bool where T: DerivedFrom<Self> {
|
|
||||||
let class = unsafe {
|
|
||||||
get_dom_class(self.reflector().get_jsobject().get()).unwrap()
|
|
||||||
};
|
|
||||||
T::derives(class)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Cast a DOM object upwards to one of the interfaces it derives from.
|
|
||||||
fn upcast<T>(&self) -> &T where T: Castable, Self: DerivedFrom<T> {
|
|
||||||
unsafe { mem::transmute(self) }
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Cast a DOM object downwards to one of the interfaces it might implement.
|
|
||||||
fn downcast<T>(&self) -> Option<&T> where T: DerivedFrom<Self> {
|
|
||||||
if self.is::<T>() {
|
|
||||||
Some(unsafe { mem::transmute(self) })
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// A trait to mark an IDL interface as deriving from another one.
|
/// A trait to mark an IDL interface as deriving from another one.
|
||||||
#[rustc_on_unimplemented = "The IDL interface `{Self}` is not derived from `{T}`."]
|
#[rustc_on_unimplemented = "The IDL interface `{Self}` is not derived from `{T}`."]
|
||||||
pub trait DerivedFrom<T: Castable>: Castable {}
|
pub trait DerivedFrom<T: Castable>: Castable {}
|
||||||
|
|
|
@ -11,7 +11,7 @@ use devtools_traits::ScriptToDevtoolsControlMsg;
|
||||||
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
||||||
use dom::bindings::conversions::native_from_reflector_jsmanaged;
|
use dom::bindings::conversions::native_from_reflector_jsmanaged;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::utils::{Reflectable, Reflector};
|
use dom::bindings::reflector::{Reflectable, Reflector};
|
||||||
use dom::window::{self, ScriptHelpers};
|
use dom::window::{self, ScriptHelpers};
|
||||||
use dom::workerglobalscope::WorkerGlobalScope;
|
use dom::workerglobalscope::WorkerGlobalScope;
|
||||||
use ipc_channel::ipc::IpcSender;
|
use ipc_channel::ipc::IpcSender;
|
||||||
|
|
38
components/script/dom/bindings/inheritance.rs
Normal file
38
components/script/dom/bindings/inheritance.rs
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
/* 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/. */
|
||||||
|
|
||||||
|
//! The `Castable` trait.
|
||||||
|
|
||||||
|
pub use dom::bindings::codegen::InheritTypes::*;
|
||||||
|
|
||||||
|
use dom::bindings::conversions::get_dom_class;
|
||||||
|
use dom::bindings::conversions::{DerivedFrom, IDLInterface};
|
||||||
|
use dom::bindings::reflector::Reflectable;
|
||||||
|
use std::mem;
|
||||||
|
|
||||||
|
/// A trait to hold the cast functions of IDL interfaces that either derive
|
||||||
|
/// or are derived from other interfaces.
|
||||||
|
pub trait Castable: IDLInterface + Reflectable + Sized {
|
||||||
|
/// Check whether a DOM object implements one of its deriving interfaces.
|
||||||
|
fn is<T>(&self) -> bool where T: DerivedFrom<Self> {
|
||||||
|
let class = unsafe {
|
||||||
|
get_dom_class(self.reflector().get_jsobject().get()).unwrap()
|
||||||
|
};
|
||||||
|
T::derives(class)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Cast a DOM object upwards to one of the interfaces it derives from.
|
||||||
|
fn upcast<T>(&self) -> &T where T: Castable, Self: DerivedFrom<T> {
|
||||||
|
unsafe { mem::transmute(self) }
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Cast a DOM object downwards to one of the interfaces it might implement.
|
||||||
|
fn downcast<T>(&self) -> Option<&T> where T: DerivedFrom<Self> {
|
||||||
|
if self.is::<T>() {
|
||||||
|
Some(unsafe { mem::transmute(self) })
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -24,10 +24,11 @@
|
||||||
//!
|
//!
|
||||||
|
|
||||||
use core::nonzero::NonZero;
|
use core::nonzero::NonZero;
|
||||||
use dom::bindings::conversions::{Castable, DerivedFrom};
|
use dom::bindings::conversions::DerivedFrom;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
|
use dom::bindings::reflector::{Reflectable, Reflector};
|
||||||
use dom::bindings::trace::JSTraceable;
|
use dom::bindings::trace::JSTraceable;
|
||||||
use dom::bindings::trace::trace_reflector;
|
use dom::bindings::trace::trace_reflector;
|
||||||
use dom::bindings::utils::{Reflectable, Reflector};
|
|
||||||
use dom::node::Node;
|
use dom::node::Node;
|
||||||
use js::jsapi::{Heap, JSObject, JSTracer};
|
use js::jsapi::{Heap, JSObject, JSTracer};
|
||||||
use js::jsval::JSVal;
|
use js::jsval::JSVal;
|
||||||
|
|
|
@ -137,14 +137,17 @@ pub mod cell;
|
||||||
pub mod conversions;
|
pub mod conversions;
|
||||||
pub mod error;
|
pub mod error;
|
||||||
pub mod global;
|
pub mod global;
|
||||||
|
pub mod inheritance;
|
||||||
pub mod js;
|
pub mod js;
|
||||||
pub mod num;
|
pub mod num;
|
||||||
pub mod proxyhandler;
|
pub mod proxyhandler;
|
||||||
pub mod refcounted;
|
pub mod refcounted;
|
||||||
|
pub mod reflector;
|
||||||
pub mod str;
|
pub mod str;
|
||||||
pub mod structuredclone;
|
pub mod structuredclone;
|
||||||
pub mod trace;
|
pub mod trace;
|
||||||
pub mod utils;
|
pub mod utils;
|
||||||
|
pub mod xmlname;
|
||||||
|
|
||||||
/// Generated JS-Rust bindings.
|
/// Generated JS-Rust bindings.
|
||||||
#[allow(missing_docs, non_snake_case)]
|
#[allow(missing_docs, non_snake_case)]
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
|
|
||||||
use core::nonzero::NonZero;
|
use core::nonzero::NonZero;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
|
use dom::bindings::reflector::{Reflectable, Reflector};
|
||||||
use dom::bindings::trace::trace_reflector;
|
use dom::bindings::trace::trace_reflector;
|
||||||
use dom::bindings::utils::{Reflectable, Reflector};
|
|
||||||
use js::jsapi::{JSContext, JSTracer};
|
use js::jsapi::{JSContext, JSTracer};
|
||||||
use libc;
|
use libc;
|
||||||
use script_task::{CommonScriptMsg, ScriptChan};
|
use script_task::{CommonScriptMsg, ScriptChan};
|
||||||
|
|
79
components/script/dom/bindings/reflector.rs
Normal file
79
components/script/dom/bindings/reflector.rs
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
/* 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/. */
|
||||||
|
|
||||||
|
//! The `Reflector` struct.
|
||||||
|
|
||||||
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::js::Root;
|
||||||
|
use js::jsapi::{HandleObject, JSContext, JSObject};
|
||||||
|
use std::cell::UnsafeCell;
|
||||||
|
use std::ptr;
|
||||||
|
|
||||||
|
/// Create the reflector for a new DOM object and yield ownership to the
|
||||||
|
/// reflector.
|
||||||
|
pub fn reflect_dom_object<T: Reflectable>
|
||||||
|
(obj: Box<T>,
|
||||||
|
global: GlobalRef,
|
||||||
|
wrap_fn: extern "Rust" fn(*mut JSContext, GlobalRef, Box<T>) -> Root<T>)
|
||||||
|
-> Root<T> {
|
||||||
|
wrap_fn(global.get_cx(), global, obj)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// A struct to store a reference to the reflector of a DOM object.
|
||||||
|
#[allow(raw_pointer_derive, unrooted_must_root)]
|
||||||
|
#[must_root]
|
||||||
|
#[servo_lang = "reflector"]
|
||||||
|
#[derive(HeapSizeOf)]
|
||||||
|
// If you're renaming or moving this field, update the path in plugins::reflector as well
|
||||||
|
pub struct Reflector {
|
||||||
|
#[ignore_heap_size_of = "defined and measured in rust-mozjs"]
|
||||||
|
object: UnsafeCell<*mut JSObject>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[allow(unrooted_must_root)]
|
||||||
|
impl PartialEq for Reflector {
|
||||||
|
fn eq(&self, other: &Reflector) -> bool {
|
||||||
|
unsafe { *self.object.get() == *other.object.get() }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Reflector {
|
||||||
|
/// Get the reflector.
|
||||||
|
#[inline]
|
||||||
|
pub fn get_jsobject(&self) -> HandleObject {
|
||||||
|
unsafe { HandleObject::from_marked_location(self.object.get()) }
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Initialize the reflector. (May be called only once.)
|
||||||
|
pub fn set_jsobject(&mut self, object: *mut JSObject) {
|
||||||
|
unsafe {
|
||||||
|
let obj = self.object.get();
|
||||||
|
assert!((*obj).is_null());
|
||||||
|
assert!(!object.is_null());
|
||||||
|
*obj = object;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Return a pointer to the memory location at which the JS reflector
|
||||||
|
/// object is stored. Used to root the reflector, as
|
||||||
|
/// required by the JSAPI rooting APIs.
|
||||||
|
pub fn rootable(&self) -> *mut *mut JSObject {
|
||||||
|
self.object.get()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create an uninitialized `Reflector`.
|
||||||
|
pub fn new() -> Reflector {
|
||||||
|
Reflector {
|
||||||
|
object: UnsafeCell::new(ptr::null_mut())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// A trait to provide access to the `Reflector` for a DOM object.
|
||||||
|
pub trait Reflectable {
|
||||||
|
/// Returns the receiver's reflector.
|
||||||
|
fn reflector(&self) -> &Reflector;
|
||||||
|
/// Initializes the Reflector
|
||||||
|
fn init_reflector(&mut self, obj: *mut JSObject);
|
||||||
|
}
|
|
@ -35,7 +35,8 @@ use canvas_traits::{CompositionOrBlending, LineCapStyle, LineJoinStyle, Repetiti
|
||||||
use cssparser::RGBA;
|
use cssparser::RGBA;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::refcounted::Trusted;
|
use dom::bindings::refcounted::Trusted;
|
||||||
use dom::bindings::utils::{Reflectable, Reflector, WindowProxyHandler};
|
use dom::bindings::reflector::{Reflectable, Reflector};
|
||||||
|
use dom::bindings::utils::WindowProxyHandler;
|
||||||
use encoding::types::EncodingRef;
|
use encoding::types::EncodingRef;
|
||||||
use euclid::length::Length as EuclidLength;
|
use euclid::length::Length as EuclidLength;
|
||||||
use euclid::matrix2d::Matrix2D;
|
use euclid::matrix2d::Matrix2D;
|
||||||
|
|
|
@ -4,15 +4,13 @@
|
||||||
|
|
||||||
//! Various utilities to glue JavaScript and the DOM implementation together.
|
//! Various utilities to glue JavaScript and the DOM implementation together.
|
||||||
|
|
||||||
use dom::bindings::codegen::InheritTypes::TopTypeId;
|
|
||||||
use dom::bindings::codegen::PrototypeList;
|
use dom::bindings::codegen::PrototypeList;
|
||||||
use dom::bindings::codegen::PrototypeList::MAX_PROTO_CHAIN_LENGTH;
|
use dom::bindings::codegen::PrototypeList::MAX_PROTO_CHAIN_LENGTH;
|
||||||
use dom::bindings::conversions::native_from_handleobject;
|
use dom::bindings::conversions::native_from_handleobject;
|
||||||
use dom::bindings::conversions::private_from_proto_check;
|
use dom::bindings::conversions::private_from_proto_check;
|
||||||
use dom::bindings::conversions::{is_dom_class, jsstring_to_str, DOM_OBJECT_SLOT};
|
use dom::bindings::conversions::{is_dom_class, jsstring_to_str, DOM_OBJECT_SLOT};
|
||||||
use dom::bindings::error::throw_type_error;
|
use dom::bindings::error::{throw_invalid_this, throw_type_error};
|
||||||
use dom::bindings::error::{Error, ErrorResult, Fallible, throw_invalid_this};
|
use dom::bindings::inheritance::TopTypeId;
|
||||||
use dom::bindings::global::GlobalRef;
|
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::trace::trace_object;
|
use dom::bindings::trace::trace_object;
|
||||||
use dom::browsercontext;
|
use dom::browsercontext;
|
||||||
|
@ -49,14 +47,10 @@ use js::rust::{GCMethods, ToString, define_methods, define_properties};
|
||||||
use js::{JSFUN_CONSTRUCTOR, JSPROP_ENUMERATE, JS_CALLEE};
|
use js::{JSFUN_CONSTRUCTOR, JSPROP_ENUMERATE, JS_CALLEE};
|
||||||
use js::{JSPROP_PERMANENT, JSPROP_READONLY};
|
use js::{JSPROP_PERMANENT, JSPROP_READONLY};
|
||||||
use libc::{self, c_uint};
|
use libc::{self, c_uint};
|
||||||
use std::cell::UnsafeCell;
|
|
||||||
use std::cmp::PartialEq;
|
|
||||||
use std::default::Default;
|
use std::default::Default;
|
||||||
use std::ffi::CString;
|
use std::ffi::CString;
|
||||||
use std::ptr;
|
use std::ptr;
|
||||||
use string_cache::{Atom, Namespace};
|
|
||||||
use util::mem::HeapSizeOf;
|
use util::mem::HeapSizeOf;
|
||||||
use util::str::DOMString;
|
|
||||||
|
|
||||||
/// Proxy handler for a WindowProxy.
|
/// Proxy handler for a WindowProxy.
|
||||||
#[allow(raw_pointer_derive)]
|
#[allow(raw_pointer_derive)]
|
||||||
|
@ -391,74 +385,6 @@ pub fn initialize_global(global: *mut JSObject) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A trait to provide access to the `Reflector` for a DOM object.
|
|
||||||
pub trait Reflectable {
|
|
||||||
/// Returns the receiver's reflector.
|
|
||||||
fn reflector(&self) -> &Reflector;
|
|
||||||
/// Initializes the Reflector
|
|
||||||
fn init_reflector(&mut self, obj: *mut JSObject);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Create the reflector for a new DOM object and yield ownership to the
|
|
||||||
/// reflector.
|
|
||||||
pub fn reflect_dom_object<T: Reflectable>
|
|
||||||
(obj: Box<T>,
|
|
||||||
global: GlobalRef,
|
|
||||||
wrap_fn: extern "Rust" fn(*mut JSContext, GlobalRef, Box<T>) -> Root<T>)
|
|
||||||
-> Root<T> {
|
|
||||||
wrap_fn(global.get_cx(), global, obj)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// A struct to store a reference to the reflector of a DOM object.
|
|
||||||
#[allow(raw_pointer_derive, unrooted_must_root)]
|
|
||||||
#[must_root]
|
|
||||||
#[servo_lang = "reflector"]
|
|
||||||
#[derive(HeapSizeOf)]
|
|
||||||
// If you're renaming or moving this field, update the path in plugins::reflector as well
|
|
||||||
pub struct Reflector {
|
|
||||||
#[ignore_heap_size_of = "defined and measured in rust-mozjs"]
|
|
||||||
object: UnsafeCell<*mut JSObject>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[allow(unrooted_must_root)]
|
|
||||||
impl PartialEq for Reflector {
|
|
||||||
fn eq(&self, other: &Reflector) -> bool {
|
|
||||||
unsafe { *self.object.get() == *other.object.get() }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Reflector {
|
|
||||||
/// Get the reflector.
|
|
||||||
#[inline]
|
|
||||||
pub fn get_jsobject(&self) -> HandleObject {
|
|
||||||
unsafe { HandleObject::from_marked_location(self.object.get()) }
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Initialize the reflector. (May be called only once.)
|
|
||||||
pub fn set_jsobject(&mut self, object: *mut JSObject) {
|
|
||||||
unsafe {
|
|
||||||
let obj = self.object.get();
|
|
||||||
assert!((*obj).is_null());
|
|
||||||
assert!(!object.is_null());
|
|
||||||
*obj = object;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Return a pointer to the memory location at which the JS reflector
|
|
||||||
/// object is stored. Used to root the reflector, as
|
|
||||||
/// required by the JSAPI rooting APIs.
|
|
||||||
pub fn rootable(&self) -> *mut *mut JSObject {
|
|
||||||
self.object.get()
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Create an uninitialized `Reflector`.
|
|
||||||
pub fn new() -> Reflector {
|
|
||||||
Reflector {
|
|
||||||
object: UnsafeCell::new(ptr::null_mut())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Gets the property `id` on `proxy`'s prototype. If it exists, `*found` is
|
/// Gets the property `id` on `proxy`'s prototype. If it exists, `*found` is
|
||||||
/// set to true and `*vp` to the value, otherwise `*found` is set to false.
|
/// set to true and `*vp` to the value, otherwise `*found` is set to false.
|
||||||
///
|
///
|
||||||
|
@ -800,21 +726,6 @@ pub unsafe extern fn generic_lenient_setter(cx: *mut JSContext,
|
||||||
generic_call(cx, argc, vp, true, call_setter)
|
generic_call(cx, argc, vp, true, call_setter)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Validate a qualified name. See https://dom.spec.whatwg.org/#validate for details.
|
|
||||||
pub fn validate_qualified_name(qualified_name: &str) -> ErrorResult {
|
|
||||||
match xml_name_type(qualified_name) {
|
|
||||||
XMLName::InvalidXMLName => {
|
|
||||||
// Step 1.
|
|
||||||
Err(Error::InvalidCharacter)
|
|
||||||
},
|
|
||||||
XMLName::Name => {
|
|
||||||
// Step 2.
|
|
||||||
Err(Error::Namespace)
|
|
||||||
},
|
|
||||||
XMLName::QName => Ok(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
unsafe extern "C" fn instance_class_has_proto_at_depth(clasp: *const js::jsapi::Class,
|
unsafe extern "C" fn instance_class_has_proto_at_depth(clasp: *const js::jsapi::Class,
|
||||||
proto_id: u32,
|
proto_id: u32,
|
||||||
depth: u32) -> bool {
|
depth: u32) -> bool {
|
||||||
|
@ -827,155 +738,3 @@ unsafe extern "C" fn instance_class_has_proto_at_depth(clasp: *const js::jsapi::
|
||||||
pub const DOM_CALLBACKS: DOMCallbacks = DOMCallbacks {
|
pub const DOM_CALLBACKS: DOMCallbacks = DOMCallbacks {
|
||||||
instanceClassMatchesProto: Some(instance_class_has_proto_at_depth),
|
instanceClassMatchesProto: Some(instance_class_has_proto_at_depth),
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Validate a namespace and qualified name and extract their parts.
|
|
||||||
/// See https://dom.spec.whatwg.org/#validate-and-extract for details.
|
|
||||||
pub fn validate_and_extract(namespace: Option<DOMString>, qualified_name: &str)
|
|
||||||
-> Fallible<(Namespace, Option<Atom>, Atom)> {
|
|
||||||
// Step 1.
|
|
||||||
let namespace = namespace_from_domstring(namespace);
|
|
||||||
|
|
||||||
// Step 2.
|
|
||||||
try!(validate_qualified_name(qualified_name));
|
|
||||||
|
|
||||||
let colon = ':';
|
|
||||||
|
|
||||||
// Step 5.
|
|
||||||
let mut parts = qualified_name.splitn(2, colon);
|
|
||||||
|
|
||||||
let (maybe_prefix, local_name) = {
|
|
||||||
let maybe_prefix = parts.next();
|
|
||||||
let maybe_local_name = parts.next();
|
|
||||||
|
|
||||||
debug_assert!(parts.next().is_none());
|
|
||||||
|
|
||||||
if let Some(local_name) = maybe_local_name {
|
|
||||||
debug_assert!(!maybe_prefix.unwrap().is_empty());
|
|
||||||
|
|
||||||
(maybe_prefix, local_name)
|
|
||||||
} else {
|
|
||||||
(None, maybe_prefix.unwrap())
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
debug_assert!(!local_name.contains(colon));
|
|
||||||
|
|
||||||
match (namespace, maybe_prefix) {
|
|
||||||
(ns!(""), Some(_)) => {
|
|
||||||
// Step 6.
|
|
||||||
Err(Error::Namespace)
|
|
||||||
},
|
|
||||||
(ref ns, Some("xml")) if ns != &ns!(XML) => {
|
|
||||||
// Step 7.
|
|
||||||
Err(Error::Namespace)
|
|
||||||
},
|
|
||||||
(ref ns, p) if ns != &ns!(XMLNS) &&
|
|
||||||
(qualified_name == "xmlns" || p == Some("xmlns")) => {
|
|
||||||
// Step 8.
|
|
||||||
Err(Error::Namespace)
|
|
||||||
},
|
|
||||||
(ns!(XMLNS), p) if qualified_name != "xmlns" && p != Some("xmlns") => {
|
|
||||||
// Step 9.
|
|
||||||
Err(Error::Namespace)
|
|
||||||
},
|
|
||||||
(ns, p) => {
|
|
||||||
// Step 10.
|
|
||||||
Ok((ns, p.map(Atom::from_slice), Atom::from_slice(local_name)))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Results of `xml_name_type`.
|
|
||||||
#[derive(PartialEq)]
|
|
||||||
#[allow(missing_docs)]
|
|
||||||
pub enum XMLName {
|
|
||||||
QName,
|
|
||||||
Name,
|
|
||||||
InvalidXMLName
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Check if an element name is valid. See http://www.w3.org/TR/xml/#NT-Name
|
|
||||||
/// for details.
|
|
||||||
pub fn xml_name_type(name: &str) -> XMLName {
|
|
||||||
fn is_valid_start(c: char) -> bool {
|
|
||||||
match c {
|
|
||||||
':' |
|
|
||||||
'A' ... 'Z' |
|
|
||||||
'_' |
|
|
||||||
'a' ... 'z' |
|
|
||||||
'\u{C0}' ... '\u{D6}' |
|
|
||||||
'\u{D8}' ... '\u{F6}' |
|
|
||||||
'\u{F8}' ... '\u{2FF}' |
|
|
||||||
'\u{370}' ... '\u{37D}' |
|
|
||||||
'\u{37F}' ... '\u{1FFF}' |
|
|
||||||
'\u{200C}' ... '\u{200D}' |
|
|
||||||
'\u{2070}' ... '\u{218F}' |
|
|
||||||
'\u{2C00}' ... '\u{2FEF}' |
|
|
||||||
'\u{3001}' ... '\u{D7FF}' |
|
|
||||||
'\u{F900}' ... '\u{FDCF}' |
|
|
||||||
'\u{FDF0}' ... '\u{FFFD}' |
|
|
||||||
'\u{10000}' ... '\u{EFFFF}' => true,
|
|
||||||
_ => false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn is_valid_continuation(c: char) -> bool {
|
|
||||||
is_valid_start(c) || match c {
|
|
||||||
'-' |
|
|
||||||
'.' |
|
|
||||||
'0' ... '9' |
|
|
||||||
'\u{B7}' |
|
|
||||||
'\u{300}' ... '\u{36F}' |
|
|
||||||
'\u{203F}' ... '\u{2040}' => true,
|
|
||||||
_ => false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut iter = name.chars();
|
|
||||||
let mut non_qname_colons = false;
|
|
||||||
let mut seen_colon = false;
|
|
||||||
let mut last = match iter.next() {
|
|
||||||
None => return XMLName::InvalidXMLName,
|
|
||||||
Some(c) => {
|
|
||||||
if !is_valid_start(c) {
|
|
||||||
return XMLName::InvalidXMLName;
|
|
||||||
}
|
|
||||||
if c == ':' {
|
|
||||||
non_qname_colons = true;
|
|
||||||
}
|
|
||||||
c
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
for c in iter {
|
|
||||||
if !is_valid_continuation(c) {
|
|
||||||
return XMLName::InvalidXMLName;
|
|
||||||
}
|
|
||||||
if c == ':' {
|
|
||||||
match seen_colon {
|
|
||||||
true => non_qname_colons = true,
|
|
||||||
false => seen_colon = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
last = c
|
|
||||||
}
|
|
||||||
|
|
||||||
if last == ':' {
|
|
||||||
non_qname_colons = true
|
|
||||||
}
|
|
||||||
|
|
||||||
match non_qname_colons {
|
|
||||||
false => XMLName::QName,
|
|
||||||
true => XMLName::Name
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Convert a possibly-null URL to a namespace.
|
|
||||||
///
|
|
||||||
/// If the URL is None, returns the empty namespace.
|
|
||||||
pub fn namespace_from_domstring(url: Option<DOMString>) -> Namespace {
|
|
||||||
match url {
|
|
||||||
None => ns!(""),
|
|
||||||
Some(ref s) => Namespace(Atom::from_slice(s)),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
176
components/script/dom/bindings/xmlname.rs
Normal file
176
components/script/dom/bindings/xmlname.rs
Normal file
|
@ -0,0 +1,176 @@
|
||||||
|
/* 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/. */
|
||||||
|
|
||||||
|
//! Functions for validating and extracting qualified XML names.
|
||||||
|
|
||||||
|
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
||||||
|
use string_cache::{Atom, Namespace};
|
||||||
|
use util::str::DOMString;
|
||||||
|
|
||||||
|
/// Validate a qualified name. See https://dom.spec.whatwg.org/#validate for details.
|
||||||
|
pub fn validate_qualified_name(qualified_name: &str) -> ErrorResult {
|
||||||
|
match xml_name_type(qualified_name) {
|
||||||
|
XMLName::InvalidXMLName => {
|
||||||
|
// Step 1.
|
||||||
|
Err(Error::InvalidCharacter)
|
||||||
|
},
|
||||||
|
XMLName::Name => {
|
||||||
|
// Step 2.
|
||||||
|
Err(Error::Namespace)
|
||||||
|
},
|
||||||
|
XMLName::QName => Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Validate a namespace and qualified name and extract their parts.
|
||||||
|
/// See https://dom.spec.whatwg.org/#validate-and-extract for details.
|
||||||
|
pub fn validate_and_extract(namespace: Option<DOMString>, qualified_name: &str)
|
||||||
|
-> Fallible<(Namespace, Option<Atom>, Atom)> {
|
||||||
|
// Step 1.
|
||||||
|
let namespace = namespace_from_domstring(namespace);
|
||||||
|
|
||||||
|
// Step 2.
|
||||||
|
try!(validate_qualified_name(qualified_name));
|
||||||
|
|
||||||
|
let colon = ':';
|
||||||
|
|
||||||
|
// Step 5.
|
||||||
|
let mut parts = qualified_name.splitn(2, colon);
|
||||||
|
|
||||||
|
let (maybe_prefix, local_name) = {
|
||||||
|
let maybe_prefix = parts.next();
|
||||||
|
let maybe_local_name = parts.next();
|
||||||
|
|
||||||
|
debug_assert!(parts.next().is_none());
|
||||||
|
|
||||||
|
if let Some(local_name) = maybe_local_name {
|
||||||
|
debug_assert!(!maybe_prefix.unwrap().is_empty());
|
||||||
|
|
||||||
|
(maybe_prefix, local_name)
|
||||||
|
} else {
|
||||||
|
(None, maybe_prefix.unwrap())
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
debug_assert!(!local_name.contains(colon));
|
||||||
|
|
||||||
|
match (namespace, maybe_prefix) {
|
||||||
|
(ns!(""), Some(_)) => {
|
||||||
|
// Step 6.
|
||||||
|
Err(Error::Namespace)
|
||||||
|
},
|
||||||
|
(ref ns, Some("xml")) if ns != &ns!(XML) => {
|
||||||
|
// Step 7.
|
||||||
|
Err(Error::Namespace)
|
||||||
|
},
|
||||||
|
(ref ns, p) if ns != &ns!(XMLNS) &&
|
||||||
|
(qualified_name == "xmlns" || p == Some("xmlns")) => {
|
||||||
|
// Step 8.
|
||||||
|
Err(Error::Namespace)
|
||||||
|
},
|
||||||
|
(ns!(XMLNS), p) if qualified_name != "xmlns" && p != Some("xmlns") => {
|
||||||
|
// Step 9.
|
||||||
|
Err(Error::Namespace)
|
||||||
|
},
|
||||||
|
(ns, p) => {
|
||||||
|
// Step 10.
|
||||||
|
Ok((ns, p.map(Atom::from_slice), Atom::from_slice(local_name)))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Results of `xml_name_type`.
|
||||||
|
#[derive(PartialEq)]
|
||||||
|
#[allow(missing_docs)]
|
||||||
|
pub enum XMLName {
|
||||||
|
QName,
|
||||||
|
Name,
|
||||||
|
InvalidXMLName
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Check if an element name is valid. See http://www.w3.org/TR/xml/#NT-Name
|
||||||
|
/// for details.
|
||||||
|
pub fn xml_name_type(name: &str) -> XMLName {
|
||||||
|
fn is_valid_start(c: char) -> bool {
|
||||||
|
match c {
|
||||||
|
':' |
|
||||||
|
'A' ... 'Z' |
|
||||||
|
'_' |
|
||||||
|
'a' ... 'z' |
|
||||||
|
'\u{C0}' ... '\u{D6}' |
|
||||||
|
'\u{D8}' ... '\u{F6}' |
|
||||||
|
'\u{F8}' ... '\u{2FF}' |
|
||||||
|
'\u{370}' ... '\u{37D}' |
|
||||||
|
'\u{37F}' ... '\u{1FFF}' |
|
||||||
|
'\u{200C}' ... '\u{200D}' |
|
||||||
|
'\u{2070}' ... '\u{218F}' |
|
||||||
|
'\u{2C00}' ... '\u{2FEF}' |
|
||||||
|
'\u{3001}' ... '\u{D7FF}' |
|
||||||
|
'\u{F900}' ... '\u{FDCF}' |
|
||||||
|
'\u{FDF0}' ... '\u{FFFD}' |
|
||||||
|
'\u{10000}' ... '\u{EFFFF}' => true,
|
||||||
|
_ => false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn is_valid_continuation(c: char) -> bool {
|
||||||
|
is_valid_start(c) || match c {
|
||||||
|
'-' |
|
||||||
|
'.' |
|
||||||
|
'0' ... '9' |
|
||||||
|
'\u{B7}' |
|
||||||
|
'\u{300}' ... '\u{36F}' |
|
||||||
|
'\u{203F}' ... '\u{2040}' => true,
|
||||||
|
_ => false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut iter = name.chars();
|
||||||
|
let mut non_qname_colons = false;
|
||||||
|
let mut seen_colon = false;
|
||||||
|
let mut last = match iter.next() {
|
||||||
|
None => return XMLName::InvalidXMLName,
|
||||||
|
Some(c) => {
|
||||||
|
if !is_valid_start(c) {
|
||||||
|
return XMLName::InvalidXMLName;
|
||||||
|
}
|
||||||
|
if c == ':' {
|
||||||
|
non_qname_colons = true;
|
||||||
|
}
|
||||||
|
c
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
for c in iter {
|
||||||
|
if !is_valid_continuation(c) {
|
||||||
|
return XMLName::InvalidXMLName;
|
||||||
|
}
|
||||||
|
if c == ':' {
|
||||||
|
match seen_colon {
|
||||||
|
true => non_qname_colons = true,
|
||||||
|
false => seen_colon = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
last = c
|
||||||
|
}
|
||||||
|
|
||||||
|
if last == ':' {
|
||||||
|
non_qname_colons = true
|
||||||
|
}
|
||||||
|
|
||||||
|
match non_qname_colons {
|
||||||
|
false => XMLName::QName,
|
||||||
|
true => XMLName::Name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Convert a possibly-null URL to a namespace.
|
||||||
|
///
|
||||||
|
/// If the URL is None, returns the empty namespace.
|
||||||
|
pub fn namespace_from_domstring(url: Option<DOMString>) -> Namespace {
|
||||||
|
match url {
|
||||||
|
None => ns!(""),
|
||||||
|
Some(ref s) => Namespace(Atom::from_slice(s)),
|
||||||
|
}
|
||||||
|
}
|
|
@ -7,7 +7,7 @@ use dom::bindings::codegen::Bindings::BlobBinding::BlobMethods;
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::{GlobalField, GlobalRef};
|
use dom::bindings::global::{GlobalField, GlobalRef};
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use num::ToPrimitive;
|
use num::ToPrimitive;
|
||||||
use std::ascii::AsciiExt;
|
use std::ascii::AsciiExt;
|
||||||
use std::borrow::ToOwned;
|
use std::borrow::ToOwned;
|
||||||
|
|
|
@ -6,8 +6,9 @@ use dom::bindings::conversions::native_from_handleobject;
|
||||||
use dom::bindings::conversions::{ToJSValConvertible};
|
use dom::bindings::conversions::{ToJSValConvertible};
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::proxyhandler::{fill_property_descriptor, get_property_descriptor};
|
use dom::bindings::proxyhandler::{fill_property_descriptor, get_property_descriptor};
|
||||||
|
use dom::bindings::reflector::Reflectable;
|
||||||
|
use dom::bindings::utils::WindowProxyHandler;
|
||||||
use dom::bindings::utils::get_array_index_from_id;
|
use dom::bindings::utils::get_array_index_from_id;
|
||||||
use dom::bindings::utils::{Reflectable, WindowProxyHandler};
|
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use dom::window::Window;
|
use dom::window::Window;
|
||||||
|
|
|
@ -10,7 +10,7 @@ use dom::bindings::error::{Error, ErrorResult};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::num::Finite;
|
use dom::bindings::num::Finite;
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::canvasrenderingcontext2d::parse_color;
|
use dom::canvasrenderingcontext2d::parse_color;
|
||||||
|
|
||||||
// https://html.spec.whatwg.org/multipage/#canvasgradient
|
// https://html.spec.whatwg.org/multipage/#canvasgradient
|
||||||
|
|
|
@ -6,7 +6,7 @@ use canvas_traits::{FillOrStrokeStyle, RepetitionStyle, SurfaceStyle};
|
||||||
use dom::bindings::codegen::Bindings::CanvasPatternBinding;
|
use dom::bindings::codegen::Bindings::CanvasPatternBinding;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::canvasgradient::ToFillOrStrokeStyle;
|
use dom::canvasgradient::ToFillOrStrokeStyle;
|
||||||
use euclid::size::Size2D;
|
use euclid::size::Size2D;
|
||||||
|
|
||||||
|
|
|
@ -15,12 +15,12 @@ use dom::bindings::codegen::Bindings::CanvasRenderingContext2DBinding::CanvasWin
|
||||||
use dom::bindings::codegen::Bindings::ImageDataBinding::ImageDataMethods;
|
use dom::bindings::codegen::Bindings::ImageDataBinding::ImageDataMethods;
|
||||||
use dom::bindings::codegen::UnionTypes::HTMLImageElementOrHTMLCanvasElementOrCanvasRenderingContext2D;
|
use dom::bindings::codegen::UnionTypes::HTMLImageElementOrHTMLCanvasElementOrCanvasRenderingContext2D;
|
||||||
use dom::bindings::codegen::UnionTypes::StringOrCanvasGradientOrCanvasPattern;
|
use dom::bindings::codegen::UnionTypes::StringOrCanvasGradientOrCanvasPattern;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::{Error, Fallible};
|
use dom::bindings::error::{Error, Fallible};
|
||||||
use dom::bindings::global::{GlobalField, GlobalRef};
|
use dom::bindings::global::{GlobalField, GlobalRef};
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, LayoutJS, Root};
|
use dom::bindings::js::{JS, LayoutJS, Root};
|
||||||
use dom::bindings::num::Finite;
|
use dom::bindings::num::Finite;
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::canvasgradient::{CanvasGradient, CanvasGradientStyle, ToFillOrStrokeStyle};
|
use dom::canvasgradient::{CanvasGradient, CanvasGradientStyle, ToFillOrStrokeStyle};
|
||||||
use dom::canvaspattern::CanvasPattern;
|
use dom::canvaspattern::CanvasPattern;
|
||||||
use dom::htmlcanvaselement::HTMLCanvasElement;
|
use dom::htmlcanvaselement::HTMLCanvasElement;
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
use dom::bindings::cell::DOMRefCell;
|
use dom::bindings::cell::DOMRefCell;
|
||||||
use dom::bindings::codegen::Bindings::CharacterDataBinding::CharacterDataMethods;
|
use dom::bindings::codegen::Bindings::CharacterDataBinding::CharacterDataMethods;
|
||||||
use dom::bindings::codegen::UnionTypes::NodeOrString;
|
use dom::bindings::codegen::UnionTypes::NodeOrString;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{LayoutJS, Root};
|
use dom::bindings::js::{LayoutJS, Root};
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
use dom::bindings::codegen::Bindings::CloseEventBinding;
|
use dom::bindings::codegen::Bindings::CloseEventBinding;
|
||||||
use dom::bindings::codegen::Bindings::CloseEventBinding::CloseEventMethods;
|
use dom::bindings::codegen::Bindings::CloseEventBinding::CloseEventMethods;
|
||||||
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::reflect_dom_object;
|
use dom::bindings::reflector::reflect_dom_object;
|
||||||
use dom::event::{Event, EventBubbles, EventCancelable};
|
use dom::event::{Event, EventBubbles, EventCancelable};
|
||||||
use script_task::ScriptChan;
|
use script_task::ScriptChan;
|
||||||
use util::str::DOMString;
|
use util::str::DOMString;
|
||||||
|
|
|
@ -7,7 +7,7 @@ use dom::bindings::codegen::Bindings::ConsoleBinding;
|
||||||
use dom::bindings::codegen::Bindings::ConsoleBinding::ConsoleMethods;
|
use dom::bindings::codegen::Bindings::ConsoleBinding::ConsoleMethods;
|
||||||
use dom::bindings::global::{GlobalField, GlobalRef};
|
use dom::bindings::global::{GlobalField, GlobalRef};
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use util::str::DOMString;
|
use util::str::DOMString;
|
||||||
|
|
||||||
// https://developer.mozilla.org/en-US/docs/Web/API/Console
|
// https://developer.mozilla.org/en-US/docs/Web/API/Console
|
||||||
|
|
|
@ -8,7 +8,7 @@ use dom::bindings::codegen::Bindings::CryptoBinding::CryptoMethods;
|
||||||
use dom::bindings::error::{Error, Fallible};
|
use dom::bindings::error::{Error, Fallible};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use js::jsapi::{JSContext, JSObject};
|
use js::jsapi::{JSContext, JSObject};
|
||||||
use js::jsapi::{JS_GetArrayBufferViewType, JS_GetObjectAsArrayBufferView, Type};
|
use js::jsapi::{JS_GetArrayBufferViewType, JS_GetObjectAsArrayBufferView, Type};
|
||||||
use rand::{OsRng, Rng};
|
use rand::{OsRng, Rng};
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
use cssparser::serialize_identifier;
|
use cssparser::serialize_identifier;
|
||||||
use dom::bindings::error::{Error, Fallible};
|
use dom::bindings::error::{Error, Fallible};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::utils::Reflector;
|
use dom::bindings::reflector::Reflector;
|
||||||
use util::str::DOMString;
|
use util::str::DOMString;
|
||||||
|
|
||||||
#[dom_struct]
|
#[dom_struct]
|
||||||
|
|
|
@ -3,11 +3,11 @@
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
use dom::bindings::codegen::Bindings::CSSStyleDeclarationBinding::{self, CSSStyleDeclarationMethods};
|
use dom::bindings::codegen::Bindings::CSSStyleDeclarationBinding::{self, CSSStyleDeclarationMethods};
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::element::{Element, StylePriority};
|
use dom::element::{Element, StylePriority};
|
||||||
use dom::node::{Node, NodeDamage, document_from_node, window_from_node};
|
use dom::node::{Node, NodeDamage, document_from_node, window_from_node};
|
||||||
use dom::window::Window;
|
use dom::window::Window;
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
use dom::bindings::codegen::Bindings::CustomEventBinding;
|
use dom::bindings::codegen::Bindings::CustomEventBinding;
|
||||||
use dom::bindings::codegen::Bindings::CustomEventBinding::CustomEventMethods;
|
use dom::bindings::codegen::Bindings::CustomEventBinding::CustomEventMethods;
|
||||||
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{MutHeapJSVal, Root};
|
use dom::bindings::js::{MutHeapJSVal, Root};
|
||||||
use dom::bindings::utils::reflect_dom_object;
|
use dom::bindings::reflector::reflect_dom_object;
|
||||||
use dom::event::Event;
|
use dom::event::Event;
|
||||||
use js::jsapi::{HandleValue, JSContext};
|
use js::jsapi::{HandleValue, JSContext};
|
||||||
use js::jsval::JSVal;
|
use js::jsval::JSVal;
|
||||||
|
|
|
@ -8,13 +8,13 @@ use dom::bindings::cell::DOMRefCell;
|
||||||
use dom::bindings::codegen::Bindings::DedicatedWorkerGlobalScopeBinding;
|
use dom::bindings::codegen::Bindings::DedicatedWorkerGlobalScopeBinding;
|
||||||
use dom::bindings::codegen::Bindings::DedicatedWorkerGlobalScopeBinding::DedicatedWorkerGlobalScopeMethods;
|
use dom::bindings::codegen::Bindings::DedicatedWorkerGlobalScopeBinding::DedicatedWorkerGlobalScopeMethods;
|
||||||
use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull;
|
use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::ErrorResult;
|
use dom::bindings::error::ErrorResult;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{Root, RootCollection};
|
use dom::bindings::js::{Root, RootCollection};
|
||||||
use dom::bindings::refcounted::LiveDOMReferences;
|
use dom::bindings::refcounted::LiveDOMReferences;
|
||||||
|
use dom::bindings::reflector::Reflectable;
|
||||||
use dom::bindings::structuredclone::StructuredCloneData;
|
use dom::bindings::structuredclone::StructuredCloneData;
|
||||||
use dom::bindings::utils::Reflectable;
|
|
||||||
use dom::messageevent::MessageEvent;
|
use dom::messageevent::MessageEvent;
|
||||||
use dom::worker::{SimpleWorkerErrorHandler, TrustedWorkerAddress, WorkerMessageHandler};
|
use dom::worker::{SimpleWorkerErrorHandler, TrustedWorkerAddress, WorkerMessageHandler};
|
||||||
use dom::workerglobalscope::WorkerGlobalScope;
|
use dom::workerglobalscope::WorkerGlobalScope;
|
||||||
|
|
|
@ -15,19 +15,18 @@ use dom::bindings::codegen::Bindings::NodeFilterBinding::NodeFilter;
|
||||||
use dom::bindings::codegen::Bindings::PerformanceBinding::PerformanceMethods;
|
use dom::bindings::codegen::Bindings::PerformanceBinding::PerformanceMethods;
|
||||||
use dom::bindings::codegen::Bindings::TouchBinding::TouchMethods;
|
use dom::bindings::codegen::Bindings::TouchBinding::TouchMethods;
|
||||||
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
||||||
use dom::bindings::codegen::InheritTypes::{ElementTypeId, HTMLElementTypeId, NodeTypeId};
|
|
||||||
use dom::bindings::codegen::UnionTypes::NodeOrString;
|
use dom::bindings::codegen::UnionTypes::NodeOrString;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::{Castable, ElementTypeId, HTMLElementTypeId, NodeTypeId};
|
||||||
use dom::bindings::js::RootedReference;
|
use dom::bindings::js::RootedReference;
|
||||||
use dom::bindings::js::{JS, LayoutJS, MutNullableHeap, Root};
|
use dom::bindings::js::{JS, LayoutJS, MutNullableHeap, Root};
|
||||||
use dom::bindings::num::Finite;
|
use dom::bindings::num::Finite;
|
||||||
use dom::bindings::refcounted::Trusted;
|
use dom::bindings::refcounted::Trusted;
|
||||||
|
use dom::bindings::reflector::{Reflectable, reflect_dom_object};
|
||||||
use dom::bindings::trace::RootedVec;
|
use dom::bindings::trace::RootedVec;
|
||||||
use dom::bindings::utils::XMLName::InvalidXMLName;
|
use dom::bindings::xmlname::XMLName::InvalidXMLName;
|
||||||
use dom::bindings::utils::{Reflectable, reflect_dom_object};
|
use dom::bindings::xmlname::{validate_and_extract, xml_name_type};
|
||||||
use dom::bindings::utils::{validate_and_extract, xml_name_type};
|
|
||||||
use dom::comment::Comment;
|
use dom::comment::Comment;
|
||||||
use dom::customevent::CustomEvent;
|
use dom::customevent::CustomEvent;
|
||||||
use dom::documentfragment::DocumentFragment;
|
use dom::documentfragment::DocumentFragment;
|
||||||
|
|
|
@ -6,9 +6,9 @@ use dom::bindings::codegen::Bindings::DocumentFragmentBinding;
|
||||||
use dom::bindings::codegen::Bindings::DocumentFragmentBinding::DocumentFragmentMethods;
|
use dom::bindings::codegen::Bindings::DocumentFragmentBinding::DocumentFragmentMethods;
|
||||||
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
||||||
use dom::bindings::codegen::UnionTypes::NodeOrString;
|
use dom::bindings::codegen::UnionTypes::NodeOrString;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::{ErrorResult, Fallible};
|
use dom::bindings::error::{ErrorResult, Fallible};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
use dom::bindings::codegen::Bindings::DocumentTypeBinding;
|
use dom::bindings::codegen::Bindings::DocumentTypeBinding;
|
||||||
use dom::bindings::codegen::Bindings::DocumentTypeBinding::DocumentTypeMethods;
|
use dom::bindings::codegen::Bindings::DocumentTypeBinding::DocumentTypeMethods;
|
||||||
use dom::bindings::codegen::UnionTypes::NodeOrString;
|
use dom::bindings::codegen::UnionTypes::NodeOrString;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::ErrorResult;
|
use dom::bindings::error::ErrorResult;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::node::Node;
|
use dom::node::Node;
|
||||||
|
|
|
@ -7,7 +7,7 @@ use dom::bindings::codegen::Bindings::DOMExceptionBinding::DOMExceptionConstants
|
||||||
use dom::bindings::codegen::Bindings::DOMExceptionBinding::DOMExceptionMethods;
|
use dom::bindings::codegen::Bindings::DOMExceptionBinding::DOMExceptionMethods;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use std::borrow::ToOwned;
|
use std::borrow::ToOwned;
|
||||||
use util::str::DOMString;
|
use util::str::DOMString;
|
||||||
|
|
||||||
|
|
|
@ -7,12 +7,12 @@ use dom::bindings::codegen::Bindings::DOMImplementationBinding;
|
||||||
use dom::bindings::codegen::Bindings::DOMImplementationBinding::DOMImplementationMethods;
|
use dom::bindings::codegen::Bindings::DOMImplementationBinding::DOMImplementationMethods;
|
||||||
use dom::bindings::codegen::Bindings::DocumentBinding::DocumentMethods;
|
use dom::bindings::codegen::Bindings::DocumentBinding::DocumentMethods;
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::utils::validate_qualified_name;
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::xmlname::validate_qualified_name;
|
||||||
use dom::document::DocumentSource;
|
use dom::document::DocumentSource;
|
||||||
use dom::document::{Document, IsHTMLDocument};
|
use dom::document::{Document, IsHTMLDocument};
|
||||||
use dom::documenttype::DocumentType;
|
use dom::documenttype::DocumentType;
|
||||||
|
|
|
@ -11,7 +11,7 @@ use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::document::DocumentSource;
|
use dom::document::DocumentSource;
|
||||||
use dom::document::{Document, IsHTMLDocument};
|
use dom::document::{Document, IsHTMLDocument};
|
||||||
use dom::window::Window;
|
use dom::window::Window;
|
||||||
|
|
|
@ -7,7 +7,7 @@ use dom::bindings::codegen::Bindings::DOMPointReadOnlyBinding::DOMPointReadOnlyM
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::reflect_dom_object;
|
use dom::bindings::reflector::reflect_dom_object;
|
||||||
use dom::dompointreadonly::{DOMPointReadOnly, DOMPointWriteMethods};
|
use dom::dompointreadonly::{DOMPointReadOnly, DOMPointWriteMethods};
|
||||||
|
|
||||||
// http://dev.w3.org/fxtf/geometry/Overview.html#dompoint
|
// http://dev.w3.org/fxtf/geometry/Overview.html#dompoint
|
||||||
|
|
|
@ -6,7 +6,7 @@ use dom::bindings::codegen::Bindings::DOMPointReadOnlyBinding::{DOMPointReadOnly
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use std::cell::Cell;
|
use std::cell::Cell;
|
||||||
|
|
||||||
// http://dev.w3.org/fxtf/geometry/Overview.html#dompointreadonly
|
// http://dev.w3.org/fxtf/geometry/Overview.html#dompointreadonly
|
||||||
|
|
|
@ -8,7 +8,7 @@ use dom::bindings::codegen::Bindings::DOMRectReadOnlyBinding::DOMRectReadOnlyMet
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::reflect_dom_object;
|
use dom::bindings::reflector::reflect_dom_object;
|
||||||
use dom::domrectreadonly::DOMRectReadOnly;
|
use dom::domrectreadonly::DOMRectReadOnly;
|
||||||
|
|
||||||
#[dom_struct]
|
#[dom_struct]
|
||||||
|
|
|
@ -6,7 +6,7 @@ use dom::bindings::codegen::Bindings::DOMRectListBinding;
|
||||||
use dom::bindings::codegen::Bindings::DOMRectListBinding::DOMRectListMethods;
|
use dom::bindings::codegen::Bindings::DOMRectListBinding::DOMRectListMethods;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::domrect::DOMRect;
|
use dom::domrect::DOMRect;
|
||||||
use dom::window::Window;
|
use dom::window::Window;
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ use dom::bindings::codegen::Bindings::DOMRectReadOnlyBinding::{DOMRectReadOnlyMe
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use std::cell::Cell;
|
use std::cell::Cell;
|
||||||
|
|
||||||
#[dom_struct]
|
#[dom_struct]
|
||||||
|
|
|
@ -7,7 +7,7 @@ use dom::bindings::codegen::Bindings::DOMStringMapBinding::DOMStringMapMethods;
|
||||||
use dom::bindings::error::ErrorResult;
|
use dom::bindings::error::ErrorResult;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::htmlelement::HTMLElement;
|
use dom::htmlelement::HTMLElement;
|
||||||
use dom::node::window_from_node;
|
use dom::node::window_from_node;
|
||||||
use util::str::DOMString;
|
use util::str::DOMString;
|
||||||
|
|
|
@ -8,7 +8,7 @@ use dom::bindings::codegen::Bindings::DOMTokenListBinding::DOMTokenListMethods;
|
||||||
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use dom::node::window_from_node;
|
use dom::node::window_from_node;
|
||||||
use std::borrow::ToOwned;
|
use std::borrow::ToOwned;
|
||||||
|
|
|
@ -19,16 +19,15 @@ use dom::bindings::codegen::Bindings::HTMLInputElementBinding::HTMLInputElementM
|
||||||
use dom::bindings::codegen::Bindings::HTMLTemplateElementBinding::HTMLTemplateElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLTemplateElementBinding::HTMLTemplateElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::NamedNodeMapBinding::NamedNodeMapMethods;
|
use dom::bindings::codegen::Bindings::NamedNodeMapBinding::NamedNodeMapMethods;
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::codegen::InheritTypes::{ElementTypeId, HTMLElementTypeId, NodeTypeId};
|
|
||||||
use dom::bindings::codegen::UnionTypes::NodeOrString;
|
use dom::bindings::codegen::UnionTypes::NodeOrString;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::{Castable, ElementTypeId, HTMLElementTypeId, NodeTypeId};
|
||||||
use dom::bindings::js::{JS, LayoutJS, MutNullableHeap};
|
use dom::bindings::js::{JS, LayoutJS, MutNullableHeap};
|
||||||
use dom::bindings::js::{Root, RootedReference};
|
use dom::bindings::js::{Root, RootedReference};
|
||||||
use dom::bindings::trace::JSTraceable;
|
use dom::bindings::trace::JSTraceable;
|
||||||
use dom::bindings::utils::XMLName::InvalidXMLName;
|
use dom::bindings::xmlname::XMLName::InvalidXMLName;
|
||||||
use dom::bindings::utils::{namespace_from_domstring, validate_and_extract, xml_name_type};
|
use dom::bindings::xmlname::{namespace_from_domstring, validate_and_extract, xml_name_type};
|
||||||
use dom::characterdata::CharacterData;
|
use dom::characterdata::CharacterData;
|
||||||
use dom::create::create_element;
|
use dom::create::create_element;
|
||||||
use dom::document::{Document, LayoutDocumentHelpers};
|
use dom::document::{Document, LayoutDocumentHelpers};
|
||||||
|
|
|
@ -6,12 +6,12 @@ use dom::bindings::cell::DOMRefCell;
|
||||||
use dom::bindings::codegen::Bindings::ErrorEventBinding;
|
use dom::bindings::codegen::Bindings::ErrorEventBinding;
|
||||||
use dom::bindings::codegen::Bindings::ErrorEventBinding::ErrorEventMethods;
|
use dom::bindings::codegen::Bindings::ErrorEventBinding::ErrorEventMethods;
|
||||||
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{MutHeapJSVal, Root};
|
use dom::bindings::js::{MutHeapJSVal, Root};
|
||||||
|
use dom::bindings::reflector::reflect_dom_object;
|
||||||
use dom::bindings::trace::JSTraceable;
|
use dom::bindings::trace::JSTraceable;
|
||||||
use dom::bindings::utils::reflect_dom_object;
|
|
||||||
use dom::event::{Event, EventBubbles, EventCancelable};
|
use dom::event::{Event, EventBubbles, EventCancelable};
|
||||||
use js::jsapi::{RootedValue, HandleValue, JSContext};
|
use js::jsapi::{RootedValue, HandleValue, JSContext};
|
||||||
use js::jsval::JSVal;
|
use js::jsval::JSVal;
|
||||||
|
|
|
@ -8,7 +8,7 @@ use dom::bindings::codegen::Bindings::EventBinding::{EventConstants, EventMethod
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::eventtarget::EventTarget;
|
use dom::eventtarget::EventTarget;
|
||||||
use std::borrow::ToOwned;
|
use std::borrow::ToOwned;
|
||||||
use std::cell::Cell;
|
use std::cell::Cell;
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
use devtools_traits::{StartedTimelineMarker, TimelineMarker, TimelineMarkerType};
|
use devtools_traits::{StartedTimelineMarker, TimelineMarker, TimelineMarkerType};
|
||||||
use dom::bindings::callback::ExceptionHandling::Report;
|
use dom::bindings::callback::ExceptionHandling::Report;
|
||||||
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::global::{GlobalRoot, global_object_for_reflector};
|
use dom::bindings::global::{GlobalRoot, global_object_for_reflector};
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, Root, RootedReference};
|
use dom::bindings::js::{JS, Root, RootedReference};
|
||||||
use dom::bindings::trace::RootedVec;
|
use dom::bindings::trace::RootedVec;
|
||||||
use dom::event::{Event, EventPhase};
|
use dom::event::{Event, EventPhase};
|
||||||
|
|
|
@ -7,9 +7,9 @@ use dom::bindings::cell::DOMRefCell;
|
||||||
use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull;
|
use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull;
|
||||||
use dom::bindings::codegen::Bindings::EventListenerBinding::EventListener;
|
use dom::bindings::codegen::Bindings::EventListenerBinding::EventListener;
|
||||||
use dom::bindings::codegen::Bindings::EventTargetBinding::EventTargetMethods;
|
use dom::bindings::codegen::Bindings::EventTargetBinding::EventTargetMethods;
|
||||||
use dom::bindings::codegen::InheritTypes::EventTargetTypeId;
|
|
||||||
use dom::bindings::error::{Error, Fallible, report_pending_exception};
|
use dom::bindings::error::{Error, Fallible, report_pending_exception};
|
||||||
use dom::bindings::utils::{Reflectable, Reflector};
|
use dom::bindings::inheritance::EventTargetTypeId;
|
||||||
|
use dom::bindings::reflector::{Reflectable, Reflector};
|
||||||
use dom::event::Event;
|
use dom::event::Event;
|
||||||
use dom::eventdispatcher::dispatch_event;
|
use dom::eventdispatcher::dispatch_event;
|
||||||
use dom::virtualmethods::VirtualMethods;
|
use dom::virtualmethods::VirtualMethods;
|
||||||
|
|
|
@ -6,7 +6,7 @@ use dom::bindings::codegen::Bindings::FileBinding;
|
||||||
use dom::bindings::codegen::Bindings::FileBinding::FileMethods;
|
use dom::bindings::codegen::Bindings::FileBinding::FileMethods;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::reflect_dom_object;
|
use dom::bindings::reflector::reflect_dom_object;
|
||||||
use dom::blob::Blob;
|
use dom::blob::Blob;
|
||||||
use util::str::DOMString;
|
use util::str::DOMString;
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ use dom::bindings::codegen::Bindings::FileListBinding;
|
||||||
use dom::bindings::codegen::Bindings::FileListBinding::FileListMethods;
|
use dom::bindings::codegen::Bindings::FileListBinding::FileListMethods;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::file::File;
|
use dom::file::File;
|
||||||
use dom::window::Window;
|
use dom::window::Window;
|
||||||
|
|
||||||
|
|
|
@ -6,12 +6,12 @@ use dom::bindings::cell::DOMRefCell;
|
||||||
use dom::bindings::codegen::Bindings::BlobBinding::BlobMethods;
|
use dom::bindings::codegen::Bindings::BlobBinding::BlobMethods;
|
||||||
use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull;
|
use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull;
|
||||||
use dom::bindings::codegen::Bindings::FileReaderBinding::{self, FileReaderConstants, FileReaderMethods};
|
use dom::bindings::codegen::Bindings::FileReaderBinding::{self, FileReaderConstants, FileReaderMethods};
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
||||||
use dom::bindings::global::{GlobalField, GlobalRef};
|
use dom::bindings::global::{GlobalField, GlobalRef};
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
||||||
use dom::bindings::refcounted::Trusted;
|
use dom::bindings::refcounted::Trusted;
|
||||||
use dom::bindings::utils::{Reflectable, reflect_dom_object};
|
use dom::bindings::reflector::{Reflectable, reflect_dom_object};
|
||||||
use dom::blob::Blob;
|
use dom::blob::Blob;
|
||||||
use dom::domexception::{DOMErrorName, DOMException};
|
use dom::domexception::{DOMErrorName, DOMException};
|
||||||
use dom::event::{Event, EventBubbles, EventCancelable};
|
use dom::event::{Event, EventBubbles, EventCancelable};
|
||||||
|
|
|
@ -7,11 +7,11 @@ use dom::bindings::codegen::Bindings::FormDataBinding;
|
||||||
use dom::bindings::codegen::Bindings::FormDataBinding::FormDataMethods;
|
use dom::bindings::codegen::Bindings::FormDataBinding::FormDataMethods;
|
||||||
use dom::bindings::codegen::UnionTypes::FileOrString;
|
use dom::bindings::codegen::UnionTypes::FileOrString;
|
||||||
use dom::bindings::codegen::UnionTypes::FileOrString::{eFile, eString};
|
use dom::bindings::codegen::UnionTypes::FileOrString::{eFile, eString};
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::{Fallible};
|
use dom::bindings::error::{Fallible};
|
||||||
use dom::bindings::global::{GlobalField, GlobalRef};
|
use dom::bindings::global::{GlobalField, GlobalRef};
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::blob::Blob;
|
use dom::blob::Blob;
|
||||||
use dom::file::File;
|
use dom::file::File;
|
||||||
use dom::htmlformelement::HTMLFormElement;
|
use dom::htmlformelement::HTMLFormElement;
|
||||||
|
|
|
@ -10,7 +10,7 @@ use dom::bindings::codegen::Bindings::HTMLAnchorElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLAnchorElementBinding::HTMLAnchorElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLAnchorElementBinding::HTMLAnchorElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::MouseEventBinding::MouseEventMethods;
|
use dom::bindings::codegen::Bindings::MouseEventBinding::MouseEventMethods;
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::domtokenlist::DOMTokenList;
|
use dom::domtokenlist::DOMTokenList;
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
use dom::attr::AttrValue;
|
use dom::attr::AttrValue;
|
||||||
use dom::bindings::codegen::Bindings::HTMLAppletElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLAppletElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLAppletElementBinding::HTMLAppletElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLAppletElementBinding::HTMLAppletElementMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::htmlelement::HTMLElement;
|
use dom::htmlelement::HTMLElement;
|
||||||
|
|
|
@ -5,9 +5,9 @@
|
||||||
use dom::attr::AttrValue;
|
use dom::attr::AttrValue;
|
||||||
use dom::bindings::codegen::Bindings::HTMLAreaElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLAreaElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLAreaElementBinding::HTMLAreaElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLAreaElementBinding::HTMLAreaElementMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
||||||
use dom::bindings::utils::Reflectable;
|
use dom::bindings::reflector::Reflectable;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::domtokenlist::DOMTokenList;
|
use dom::domtokenlist::DOMTokenList;
|
||||||
use dom::htmlelement::HTMLElement;
|
use dom::htmlelement::HTMLElement;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
use dom::attr::Attr;
|
use dom::attr::Attr;
|
||||||
use dom::bindings::codegen::Bindings::HTMLBaseElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLBaseElementBinding;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element};
|
use dom::element::{AttributeMutation, Element};
|
||||||
|
|
|
@ -8,9 +8,9 @@ use dom::bindings::cell::DOMRefCell;
|
||||||
use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull;
|
use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull;
|
||||||
use dom::bindings::codegen::Bindings::HTMLBodyElementBinding::{self, HTMLBodyElementMethods};
|
use dom::bindings::codegen::Bindings::HTMLBodyElementBinding::{self, HTMLBodyElementMethods};
|
||||||
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::Reflectable;
|
use dom::bindings::reflector::Reflectable;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element, RawLayoutElementHelpers};
|
use dom::element::{AttributeMutation, Element, RawLayoutElementHelpers};
|
||||||
use dom::eventtarget::EventTarget;
|
use dom::eventtarget::EventTarget;
|
||||||
|
|
|
@ -6,7 +6,7 @@ use dom::activation::Activatable;
|
||||||
use dom::attr::Attr;
|
use dom::attr::Attr;
|
||||||
use dom::bindings::codegen::Bindings::HTMLButtonElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLButtonElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLButtonElementBinding::HTMLButtonElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLButtonElementBinding::HTMLButtonElementMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element};
|
use dom::element::{AttributeMutation, Element};
|
||||||
|
|
|
@ -10,12 +10,12 @@ use dom::bindings::codegen::Bindings::HTMLCanvasElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLCanvasElementBinding::HTMLCanvasElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLCanvasElementBinding::HTMLCanvasElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::WebGLRenderingContextBinding::WebGLContextAttributes;
|
use dom::bindings::codegen::Bindings::WebGLRenderingContextBinding::WebGLContextAttributes;
|
||||||
use dom::bindings::codegen::UnionTypes::CanvasRenderingContext2DOrWebGLRenderingContext;
|
use dom::bindings::codegen::UnionTypes::CanvasRenderingContext2DOrWebGLRenderingContext;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::{Error, Fallible};
|
use dom::bindings::error::{Error, Fallible};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{HeapGCValue, JS, LayoutJS, Root};
|
use dom::bindings::js::{HeapGCValue, JS, LayoutJS, Root};
|
||||||
use dom::bindings::num::Finite;
|
use dom::bindings::num::Finite;
|
||||||
use dom::bindings::utils::{Reflectable};
|
use dom::bindings::reflector::Reflectable;
|
||||||
use dom::canvasrenderingcontext2d::{CanvasRenderingContext2D, LayoutCanvasRenderingContext2DHelpers};
|
use dom::canvasrenderingcontext2d::{CanvasRenderingContext2D, LayoutCanvasRenderingContext2DHelpers};
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element};
|
use dom::element::{AttributeMutation, Element};
|
||||||
|
|
|
@ -4,11 +4,12 @@
|
||||||
|
|
||||||
use dom::bindings::codegen::Bindings::HTMLCollectionBinding;
|
use dom::bindings::codegen::Bindings::HTMLCollectionBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLCollectionBinding::HTMLCollectionMethods;
|
use dom::bindings::codegen::Bindings::HTMLCollectionBinding::HTMLCollectionMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::bindings::trace::JSTraceable;
|
use dom::bindings::trace::JSTraceable;
|
||||||
use dom::bindings::utils::{Reflector, namespace_from_domstring, reflect_dom_object};
|
use dom::bindings::xmlname::namespace_from_domstring;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use dom::node::{Node, TreeIterator};
|
use dom::node::{Node, TreeIterator};
|
||||||
use dom::window::Window;
|
use dom::window::Window;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
use dom::bindings::codegen::Bindings::HTMLDataListElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLDataListElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLDataListElementBinding::HTMLDataListElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLDataListElementBinding::HTMLDataListElementMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
|
|
|
@ -10,11 +10,11 @@ use dom::bindings::codegen::Bindings::HTMLElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLElementBinding::HTMLElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLElementBinding::HTMLElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::HTMLInputElementBinding::HTMLInputElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLInputElementBinding::HTMLInputElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
||||||
use dom::bindings::codegen::InheritTypes::{ElementTypeId, HTMLElementTypeId, NodeTypeId};
|
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::{Error, ErrorResult};
|
use dom::bindings::error::{Error, ErrorResult};
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
|
use dom::bindings::inheritance::{ElementTypeId, HTMLElementTypeId, NodeTypeId};
|
||||||
use dom::bindings::js::{JS, MutNullableHeap, Root, RootedReference};
|
use dom::bindings::js::{JS, MutNullableHeap, Root, RootedReference};
|
||||||
use dom::bindings::utils::Reflectable;
|
use dom::bindings::reflector::Reflectable;
|
||||||
use dom::cssstyledeclaration::{CSSModificationAccess, CSSStyleDeclaration};
|
use dom::cssstyledeclaration::{CSSModificationAccess, CSSStyleDeclaration};
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::domstringmap::DOMStringMap;
|
use dom::domstringmap::DOMStringMap;
|
||||||
|
|
|
@ -5,8 +5,7 @@
|
||||||
use dom::attr::Attr;
|
use dom::attr::Attr;
|
||||||
use dom::bindings::codegen::Bindings::HTMLFieldSetElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLFieldSetElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLFieldSetElementBinding::HTMLFieldSetElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLFieldSetElementBinding::HTMLFieldSetElementMethods;
|
||||||
use dom::bindings::codegen::InheritTypes::{ElementTypeId, HTMLElementTypeId, NodeTypeId};
|
use dom::bindings::inheritance::{Castable, ElementTypeId, HTMLElementTypeId, NodeTypeId};
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::js::{Root, RootedReference};
|
use dom::bindings::js::{Root, RootedReference};
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element};
|
use dom::element::{AttributeMutation, Element};
|
||||||
|
|
|
@ -6,7 +6,7 @@ use cssparser::RGBA;
|
||||||
use dom::attr::{Attr, AttrValue};
|
use dom::attr::{Attr, AttrValue};
|
||||||
use dom::bindings::codegen::Bindings::HTMLFontElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLFontElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLFontElementBinding::HTMLFontElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLFontElementBinding::HTMLFontElementMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element, RawLayoutElementHelpers};
|
use dom::element::{AttributeMutation, Element, RawLayoutElementHelpers};
|
||||||
|
|
|
@ -9,11 +9,11 @@ use dom::bindings::codegen::Bindings::HTMLButtonElementBinding::HTMLButtonElemen
|
||||||
use dom::bindings::codegen::Bindings::HTMLFormElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLFormElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLFormElementBinding::HTMLFormElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLFormElementBinding::HTMLFormElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::HTMLInputElementBinding::HTMLInputElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLInputElementBinding::HTMLInputElementMethods;
|
||||||
use dom::bindings::codegen::InheritTypes::{ElementTypeId, HTMLElementTypeId, NodeTypeId};
|
use dom::bindings::conversions::DerivedFrom;
|
||||||
use dom::bindings::conversions::{Castable, DerivedFrom};
|
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::{Castable, ElementTypeId, HTMLElementTypeId, NodeTypeId};
|
||||||
use dom::bindings::js::{Root};
|
use dom::bindings::js::{Root};
|
||||||
use dom::bindings::utils::Reflectable;
|
use dom::bindings::reflector::Reflectable;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use dom::event::{Event, EventBubbles, EventCancelable};
|
use dom::event::{Event, EventBubbles, EventCancelable};
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
use dom::bindings::codegen::Bindings::HTMLHeadElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLHeadElementBinding;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::htmlelement::HTMLElement;
|
use dom::htmlelement::HTMLElement;
|
||||||
|
|
|
@ -6,11 +6,12 @@ use dom::attr::{Attr, AttrHelpersForLayout, AttrValue};
|
||||||
use dom::bindings::codegen::Bindings::HTMLIFrameElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLIFrameElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLIFrameElementBinding::HTMLIFrameElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLIFrameElementBinding::HTMLIFrameElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
||||||
use dom::bindings::conversions::{Castable, ToJSValConvertible};
|
use dom::bindings::conversions::{ToJSValConvertible};
|
||||||
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{Root, LayoutJS};
|
use dom::bindings::js::{Root, LayoutJS};
|
||||||
use dom::bindings::utils::Reflectable;
|
use dom::bindings::reflector::Reflectable;
|
||||||
use dom::customevent::CustomEvent;
|
use dom::customevent::CustomEvent;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{self, AttributeMutation, Element};
|
use dom::element::{self, AttributeMutation, Element};
|
||||||
|
|
|
@ -8,9 +8,9 @@ use dom::bindings::cell::DOMRefCell;
|
||||||
use dom::bindings::codegen::Bindings::HTMLImageElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLImageElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLImageElementBinding::HTMLImageElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLImageElementBinding::HTMLImageElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{LayoutJS, Root};
|
use dom::bindings::js::{LayoutJS, Root};
|
||||||
use dom::bindings::refcounted::Trusted;
|
use dom::bindings::refcounted::Trusted;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
|
|
|
@ -11,8 +11,8 @@ use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
||||||
use dom::bindings::codegen::Bindings::HTMLInputElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLInputElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLInputElementBinding::HTMLInputElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLInputElementBinding::HTMLInputElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::KeyboardEventBinding::KeyboardEventMethods;
|
use dom::bindings::codegen::Bindings::KeyboardEventBinding::KeyboardEventMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, LayoutJS, Root, RootedReference};
|
use dom::bindings::js::{JS, LayoutJS, Root, RootedReference};
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element, RawLayoutElementHelpers, LayoutElementHelpers};
|
use dom::element::{AttributeMutation, Element, RawLayoutElementHelpers, LayoutElementHelpers};
|
||||||
|
|
|
@ -6,7 +6,7 @@ use dom::activation::Activatable;
|
||||||
use dom::attr::AttrValue;
|
use dom::attr::AttrValue;
|
||||||
use dom::bindings::codegen::Bindings::HTMLLabelElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLLabelElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLLabelElementBinding::HTMLLabelElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLLabelElementBinding::HTMLLabelElementMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
|
|
|
@ -8,8 +8,8 @@ use dom::attr::{Attr, AttrValue};
|
||||||
use dom::bindings::codegen::Bindings::HTMLLinkElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLLinkElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLLinkElementBinding::HTMLLinkElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLLinkElementBinding::HTMLLinkElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
||||||
use dom::bindings::js::{RootedReference};
|
use dom::bindings::js::{RootedReference};
|
||||||
use dom::bindings::refcounted::Trusted;
|
use dom::bindings::refcounted::Trusted;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
use dom::bindings::codegen::Bindings::HTMLMetaElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLMetaElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLMetaElementBinding::HTMLMetaElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLMetaElementBinding::HTMLMetaElementMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{Root, RootedReference};
|
use dom::bindings::js::{Root, RootedReference};
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
use dom::bindings::codegen::Bindings::HTMLMeterElementBinding::{self, HTMLMeterElementMethods};
|
use dom::bindings::codegen::Bindings::HTMLMeterElementBinding::{self, HTMLMeterElementMethods};
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::htmlelement::HTMLElement;
|
use dom::htmlelement::HTMLElement;
|
||||||
|
|
|
@ -6,7 +6,7 @@ use dom::attr::Attr;
|
||||||
use dom::bindings::cell::DOMRefCell;
|
use dom::bindings::cell::DOMRefCell;
|
||||||
use dom::bindings::codegen::Bindings::HTMLObjectElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLObjectElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLObjectElementBinding::HTMLObjectElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLObjectElementBinding::HTMLObjectElementMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element};
|
use dom::element::{AttributeMutation, Element};
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
use dom::attr::Attr;
|
use dom::attr::Attr;
|
||||||
use dom::bindings::codegen::Bindings::HTMLOptGroupElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLOptGroupElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLOptGroupElementBinding::HTMLOptGroupElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLOptGroupElementBinding::HTMLOptGroupElementMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element};
|
use dom::element::{AttributeMutation, Element};
|
||||||
|
|
|
@ -7,7 +7,7 @@ use dom::bindings::codegen::Bindings::CharacterDataBinding::CharacterDataMethods
|
||||||
use dom::bindings::codegen::Bindings::HTMLOptionElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLOptionElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLOptionElementBinding::HTMLOptionElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLOptionElementBinding::HTMLOptionElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::characterdata::CharacterData;
|
use dom::characterdata::CharacterData;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
use dom::bindings::codegen::Bindings::HTMLOutputElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLOutputElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLOutputElementBinding::HTMLOutputElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLOutputElementBinding::HTMLOutputElementMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::htmlelement::HTMLElement;
|
use dom::htmlelement::HTMLElement;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
use dom::bindings::codegen::Bindings::HTMLProgressElementBinding::{self, HTMLProgressElementMethods};
|
use dom::bindings::codegen::Bindings::HTMLProgressElementBinding::{self, HTMLProgressElementMethods};
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::htmlelement::HTMLElement;
|
use dom::htmlelement::HTMLElement;
|
||||||
|
|
|
@ -10,8 +10,8 @@ use dom::bindings::codegen::Bindings::DocumentBinding::DocumentMethods;
|
||||||
use dom::bindings::codegen::Bindings::HTMLScriptElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLScriptElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLScriptElementBinding::HTMLScriptElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLScriptElementBinding::HTMLScriptElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::RootedReference;
|
use dom::bindings::js::RootedReference;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::refcounted::Trusted;
|
use dom::bindings::refcounted::Trusted;
|
||||||
|
|
|
@ -8,7 +8,7 @@ use dom::bindings::codegen::Bindings::HTMLSelectElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLSelectElementBinding::HTMLSelectElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLSelectElementBinding::HTMLSelectElementMethods;
|
||||||
use dom::bindings::codegen::UnionTypes::HTMLElementOrLong;
|
use dom::bindings::codegen::UnionTypes::HTMLElementOrLong;
|
||||||
use dom::bindings::codegen::UnionTypes::HTMLOptionElementOrHTMLOptGroupElement;
|
use dom::bindings::codegen::UnionTypes::HTMLOptionElementOrHTMLOptGroupElement;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element};
|
use dom::element::{AttributeMutation, Element};
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
use cssparser::Parser as CssParser;
|
use cssparser::Parser as CssParser;
|
||||||
use dom::bindings::codegen::Bindings::HTMLStyleElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLStyleElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
|
|
|
@ -6,7 +6,7 @@ use cssparser::RGBA;
|
||||||
use dom::attr::{Attr, AttrValue};
|
use dom::attr::{Attr, AttrValue};
|
||||||
use dom::bindings::codegen::Bindings::HTMLTableCellElementBinding::HTMLTableCellElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLTableCellElementBinding::HTMLTableCellElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::LayoutJS;
|
use dom::bindings::js::LayoutJS;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::AttributeMutation;
|
use dom::element::AttributeMutation;
|
||||||
|
|
|
@ -7,7 +7,7 @@ use dom::attr::{Attr, AttrValue};
|
||||||
use dom::bindings::codegen::Bindings::HTMLTableElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLTableElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLTableElementBinding::HTMLTableElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLTableElementBinding::HTMLTableElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{Root, RootedReference};
|
use dom::bindings::js::{Root, RootedReference};
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element};
|
use dom::element::{AttributeMutation, Element};
|
||||||
|
|
|
@ -6,8 +6,8 @@ use cssparser::RGBA;
|
||||||
use dom::attr::Attr;
|
use dom::attr::Attr;
|
||||||
use dom::bindings::codegen::Bindings::HTMLTableRowElementBinding::{self, HTMLTableRowElementMethods};
|
use dom::bindings::codegen::Bindings::HTMLTableRowElementBinding::{self, HTMLTableRowElementMethods};
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::{ErrorResult, Fallible};
|
use dom::bindings::error::{ErrorResult, Fallible};
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, MutNullableHeap, Root, RootedReference};
|
use dom::bindings::js::{JS, MutNullableHeap, Root, RootedReference};
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element};
|
use dom::element::{AttributeMutation, Element};
|
||||||
|
|
|
@ -6,8 +6,8 @@ use cssparser::RGBA;
|
||||||
use dom::attr::Attr;
|
use dom::attr::Attr;
|
||||||
use dom::bindings::codegen::Bindings::HTMLTableSectionElementBinding::{self, HTMLTableSectionElementMethods};
|
use dom::bindings::codegen::Bindings::HTMLTableSectionElementBinding::{self, HTMLTableSectionElementMethods};
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::{ErrorResult, Fallible};
|
use dom::bindings::error::{ErrorResult, Fallible};
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{Root, RootedReference};
|
use dom::bindings::js::{Root, RootedReference};
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::element::{AttributeMutation, Element};
|
use dom::element::{AttributeMutation, Element};
|
||||||
|
|
|
@ -6,7 +6,7 @@ use dom::bindings::codegen::Bindings::DocumentBinding::DocumentMethods;
|
||||||
use dom::bindings::codegen::Bindings::HTMLTemplateElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLTemplateElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLTemplateElementBinding::HTMLTemplateElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLTemplateElementBinding::HTMLTemplateElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
use dom::bindings::js::{JS, MutNullableHeap, Root};
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
use dom::documentfragment::DocumentFragment;
|
use dom::documentfragment::DocumentFragment;
|
||||||
|
|
|
@ -8,8 +8,8 @@ use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
||||||
use dom::bindings::codegen::Bindings::HTMLTextAreaElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLTextAreaElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLTextAreaElementBinding::HTMLTextAreaElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLTextAreaElementBinding::HTMLTextAreaElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{LayoutJS, Root};
|
use dom::bindings::js::{LayoutJS, Root};
|
||||||
use dom::bindings::refcounted::Trusted;
|
use dom::bindings::refcounted::Trusted;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
use dom::bindings::codegen::Bindings::HTMLTitleElementBinding;
|
use dom::bindings::codegen::Bindings::HTMLTitleElementBinding;
|
||||||
use dom::bindings::codegen::Bindings::HTMLTitleElementBinding::HTMLTitleElementMethods;
|
use dom::bindings::codegen::Bindings::HTMLTitleElementBinding::HTMLTitleElementMethods;
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::characterdata::CharacterData;
|
use dom::characterdata::CharacterData;
|
||||||
use dom::document::Document;
|
use dom::document::Document;
|
||||||
|
|
|
@ -6,7 +6,7 @@ use dom::bindings::codegen::Bindings::ImageDataBinding;
|
||||||
use dom::bindings::codegen::Bindings::ImageDataBinding::ImageDataMethods;
|
use dom::bindings::codegen::Bindings::ImageDataBinding::ImageDataMethods;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use euclid::size::Size2D;
|
use euclid::size::Size2D;
|
||||||
use js::jsapi::{Heap, JSContext, JSObject};
|
use js::jsapi::{Heap, JSContext, JSObject};
|
||||||
use js::jsapi::{JS_GetUint8ClampedArrayData, JS_NewUint8ClampedArray};
|
use js::jsapi::{JS_GetUint8ClampedArrayData, JS_NewUint8ClampedArray};
|
||||||
|
|
|
@ -6,11 +6,11 @@ use dom::bindings::cell::DOMRefCell;
|
||||||
use dom::bindings::codegen::Bindings::KeyboardEventBinding;
|
use dom::bindings::codegen::Bindings::KeyboardEventBinding;
|
||||||
use dom::bindings::codegen::Bindings::KeyboardEventBinding::{KeyboardEventConstants, KeyboardEventMethods};
|
use dom::bindings::codegen::Bindings::KeyboardEventBinding::{KeyboardEventConstants, KeyboardEventMethods};
|
||||||
use dom::bindings::codegen::Bindings::UIEventBinding::UIEventMethods;
|
use dom::bindings::codegen::Bindings::UIEventBinding::UIEventMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{Root, RootedReference};
|
use dom::bindings::js::{Root, RootedReference};
|
||||||
use dom::bindings::utils::{Reflectable, reflect_dom_object};
|
use dom::bindings::reflector::{Reflectable, reflect_dom_object};
|
||||||
use dom::event::Event;
|
use dom::event::Event;
|
||||||
use dom::uievent::UIEvent;
|
use dom::uievent::UIEvent;
|
||||||
use dom::window::Window;
|
use dom::window::Window;
|
||||||
|
|
|
@ -6,8 +6,8 @@ use dom::bindings::codegen::Bindings::LocationBinding;
|
||||||
use dom::bindings::codegen::Bindings::LocationBinding::LocationMethods;
|
use dom::bindings::codegen::Bindings::LocationBinding::LocationMethods;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::bindings::str::USVString;
|
use dom::bindings::str::USVString;
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
|
||||||
use dom::urlhelper::UrlHelper;
|
use dom::urlhelper::UrlHelper;
|
||||||
use dom::window::Window;
|
use dom::window::Window;
|
||||||
use url::{Url, UrlParser};
|
use url::{Url, UrlParser};
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
macro_rules! make_getter(
|
macro_rules! make_getter(
|
||||||
( $attr:ident, $htmlname:expr ) => (
|
( $attr:ident, $htmlname:expr ) => (
|
||||||
fn $attr(&self) -> DOMString {
|
fn $attr(&self) -> DOMString {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use string_cache::Atom;
|
use string_cache::Atom;
|
||||||
let element = self.upcast::<Element>();
|
let element = self.upcast::<Element>();
|
||||||
|
@ -22,7 +22,7 @@ macro_rules! make_getter(
|
||||||
macro_rules! make_bool_getter(
|
macro_rules! make_bool_getter(
|
||||||
( $attr:ident, $htmlname:expr ) => (
|
( $attr:ident, $htmlname:expr ) => (
|
||||||
fn $attr(&self) -> bool {
|
fn $attr(&self) -> bool {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use string_cache::Atom;
|
use string_cache::Atom;
|
||||||
let element = self.upcast::<Element>();
|
let element = self.upcast::<Element>();
|
||||||
|
@ -39,7 +39,7 @@ macro_rules! make_bool_getter(
|
||||||
macro_rules! make_uint_getter(
|
macro_rules! make_uint_getter(
|
||||||
($attr:ident, $htmlname:expr, $default:expr) => (
|
($attr:ident, $htmlname:expr, $default:expr) => (
|
||||||
fn $attr(&self) -> u32 {
|
fn $attr(&self) -> u32 {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use string_cache::Atom;
|
use string_cache::Atom;
|
||||||
let element = self.upcast::<Element>();
|
let element = self.upcast::<Element>();
|
||||||
|
@ -59,7 +59,7 @@ macro_rules! make_uint_getter(
|
||||||
macro_rules! make_url_getter(
|
macro_rules! make_url_getter(
|
||||||
( $attr:ident, $htmlname:expr ) => (
|
( $attr:ident, $htmlname:expr ) => (
|
||||||
fn $attr(&self) -> DOMString {
|
fn $attr(&self) -> DOMString {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use string_cache::Atom;
|
use string_cache::Atom;
|
||||||
let element = self.upcast::<Element>();
|
let element = self.upcast::<Element>();
|
||||||
|
@ -77,7 +77,7 @@ macro_rules! make_url_getter(
|
||||||
macro_rules! make_url_or_base_getter(
|
macro_rules! make_url_or_base_getter(
|
||||||
( $attr:ident, $htmlname:expr ) => (
|
( $attr:ident, $htmlname:expr ) => (
|
||||||
fn $attr(&self) -> DOMString {
|
fn $attr(&self) -> DOMString {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use string_cache::Atom;
|
use string_cache::Atom;
|
||||||
let element = self.upcast::<Element>();
|
let element = self.upcast::<Element>();
|
||||||
|
@ -99,7 +99,7 @@ macro_rules! make_url_or_base_getter(
|
||||||
macro_rules! make_enumerated_getter(
|
macro_rules! make_enumerated_getter(
|
||||||
( $attr:ident, $htmlname:expr, $default:expr, $(($choices: pat))|+) => (
|
( $attr:ident, $htmlname:expr, $default:expr, $(($choices: pat))|+) => (
|
||||||
fn $attr(&self) -> DOMString {
|
fn $attr(&self) -> DOMString {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use std::ascii::AsciiExt;
|
use std::ascii::AsciiExt;
|
||||||
use std::borrow::ToOwned;
|
use std::borrow::ToOwned;
|
||||||
|
@ -125,7 +125,7 @@ macro_rules! make_enumerated_getter(
|
||||||
macro_rules! make_setter(
|
macro_rules! make_setter(
|
||||||
( $attr:ident, $htmlname:expr ) => (
|
( $attr:ident, $htmlname:expr ) => (
|
||||||
fn $attr(&self, value: DOMString) {
|
fn $attr(&self, value: DOMString) {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use string_cache::Atom;
|
use string_cache::Atom;
|
||||||
let element = self.upcast::<Element>();
|
let element = self.upcast::<Element>();
|
||||||
|
@ -139,7 +139,7 @@ macro_rules! make_setter(
|
||||||
macro_rules! make_bool_setter(
|
macro_rules! make_bool_setter(
|
||||||
( $attr:ident, $htmlname:expr ) => (
|
( $attr:ident, $htmlname:expr ) => (
|
||||||
fn $attr(&self, value: bool) {
|
fn $attr(&self, value: bool) {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use string_cache::Atom;
|
use string_cache::Atom;
|
||||||
let element = self.upcast::<Element>();
|
let element = self.upcast::<Element>();
|
||||||
|
@ -153,7 +153,7 @@ macro_rules! make_bool_setter(
|
||||||
macro_rules! make_uint_setter(
|
macro_rules! make_uint_setter(
|
||||||
($attr:ident, $htmlname:expr, $default:expr) => (
|
($attr:ident, $htmlname:expr, $default:expr) => (
|
||||||
fn $attr(&self, value: u32) {
|
fn $attr(&self, value: u32) {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use dom::values::UNSIGNED_LONG_MAX;
|
use dom::values::UNSIGNED_LONG_MAX;
|
||||||
use string_cache::Atom;
|
use string_cache::Atom;
|
||||||
|
@ -176,7 +176,7 @@ macro_rules! make_uint_setter(
|
||||||
macro_rules! make_limited_uint_setter(
|
macro_rules! make_limited_uint_setter(
|
||||||
($attr:ident, $htmlname:expr, $default:expr) => (
|
($attr:ident, $htmlname:expr, $default:expr) => (
|
||||||
fn $attr(&self, value: u32) -> $crate::dom::bindings::error::ErrorResult {
|
fn $attr(&self, value: u32) -> $crate::dom::bindings::error::ErrorResult {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use dom::values::UNSIGNED_LONG_MAX;
|
use dom::values::UNSIGNED_LONG_MAX;
|
||||||
use string_cache::Atom;
|
use string_cache::Atom;
|
||||||
|
@ -205,7 +205,7 @@ macro_rules! make_limited_uint_setter(
|
||||||
macro_rules! make_atomic_setter(
|
macro_rules! make_atomic_setter(
|
||||||
( $attr:ident, $htmlname:expr ) => (
|
( $attr:ident, $htmlname:expr ) => (
|
||||||
fn $attr(&self, value: DOMString) {
|
fn $attr(&self, value: DOMString) {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use string_cache::Atom;
|
use string_cache::Atom;
|
||||||
let element = self.upcast::<Element>();
|
let element = self.upcast::<Element>();
|
||||||
|
@ -250,14 +250,14 @@ macro_rules! no_jsmanaged_fields(
|
||||||
macro_rules! define_event_handler(
|
macro_rules! define_event_handler(
|
||||||
($handler: ident, $event_type: ident, $getter: ident, $setter: ident) => (
|
($handler: ident, $event_type: ident, $getter: ident, $setter: ident) => (
|
||||||
fn $getter(&self) -> Option<::std::rc::Rc<$handler>> {
|
fn $getter(&self) -> Option<::std::rc::Rc<$handler>> {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::eventtarget::EventTarget;
|
use dom::eventtarget::EventTarget;
|
||||||
let eventtarget = self.upcast::<EventTarget>();
|
let eventtarget = self.upcast::<EventTarget>();
|
||||||
eventtarget.get_event_handler_common(stringify!($event_type))
|
eventtarget.get_event_handler_common(stringify!($event_type))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn $setter(&self, listener: Option<::std::rc::Rc<$handler>>) {
|
fn $setter(&self, listener: Option<::std::rc::Rc<$handler>>) {
|
||||||
use dom::bindings::conversions::Castable;
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::eventtarget::EventTarget;
|
use dom::eventtarget::EventTarget;
|
||||||
let eventtarget = self.upcast::<EventTarget>();
|
let eventtarget = self.upcast::<EventTarget>();
|
||||||
eventtarget.set_event_handler_common(stringify!($event_type), listener)
|
eventtarget.set_event_handler_common(stringify!($event_type), listener)
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
|
||||||
use dom::bindings::codegen::Bindings::MessageEventBinding;
|
use dom::bindings::codegen::Bindings::MessageEventBinding;
|
||||||
use dom::bindings::codegen::Bindings::MessageEventBinding::MessageEventMethods;
|
use dom::bindings::codegen::Bindings::MessageEventBinding::MessageEventMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::reflect_dom_object;
|
use dom::bindings::reflector::reflect_dom_object;
|
||||||
use dom::event::Event;
|
use dom::event::Event;
|
||||||
use dom::eventtarget::EventTarget;
|
use dom::eventtarget::EventTarget;
|
||||||
use js::jsapi::{RootedValue, HandleValue, Heap, JSContext};
|
use js::jsapi::{RootedValue, HandleValue, Heap, JSContext};
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
//! and check whether a given instance is of a given type.
|
//! and check whether a given instance is of a given type.
|
||||||
//!
|
//!
|
||||||
//! ```ignore
|
//! ```ignore
|
||||||
//! use dom::bindings::conversions::Castable;
|
//! use dom::bindings::inheritance::Castable;
|
||||||
//! use dom::element::Element;
|
//! use dom::element::Element;
|
||||||
//! use dom::htmlelement::HTMLElement;
|
//! use dom::htmlelement::HTMLElement;
|
||||||
//! use dom::htmlinputelement::HTMLInputElement;
|
//! use dom::htmlinputelement::HTMLInputElement;
|
||||||
|
@ -81,7 +81,7 @@
|
||||||
//! on the `Node` interface to avoid unnecessary upcasts to `EventTarget`.
|
//! on the `Node` interface to avoid unnecessary upcasts to `EventTarget`.
|
||||||
//!
|
//!
|
||||||
//! ```ignore
|
//! ```ignore
|
||||||
//! use dom::bindings::codegen::InheritTypes::{EventTargetTypeId, NodeTypeId};
|
//! use dom::bindings::inheritance::{EventTargetTypeId, NodeTypeId};
|
||||||
//!
|
//!
|
||||||
//! match *node.type_id() {
|
//! match *node.type_id() {
|
||||||
//! EventTargetTypeId::Node(NodeTypeId::CharacterData(_)) => ...,
|
//! EventTargetTypeId::Node(NodeTypeId::CharacterData(_)) => ...,
|
||||||
|
@ -160,11 +160,11 @@
|
||||||
//! =======================
|
//! =======================
|
||||||
//!
|
//!
|
||||||
//! For all DOM interfaces `Foo` in an inheritance chain, a
|
//! For all DOM interfaces `Foo` in an inheritance chain, a
|
||||||
//! `dom::bindings::codegen::InheritTypes::FooCast` provides methods to cast
|
//! `dom::bindings::inheritance::FooCast` provides methods to cast
|
||||||
//! to other types in the inheritance chain. For example:
|
//! to other types in the inheritance chain. For example:
|
||||||
//!
|
//!
|
||||||
//! ```ignore
|
//! ```ignore
|
||||||
//! # use script::dom::bindings::codegen::InheritTypes::{NodeCast, HTMLElementCast};
|
//! # use script::dom::bindings::inheritance::{NodeCast, HTMLElementCast};
|
||||||
//! # use script::dom::element::Element;
|
//! # use script::dom::element::Element;
|
||||||
//! # use script::dom::node::Node;
|
//! # use script::dom::node::Node;
|
||||||
//! # use script::dom::htmlelement::HTMLElement;
|
//! # use script::dom::htmlelement::HTMLElement;
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
use dom::bindings::codegen::Bindings::MouseEventBinding;
|
use dom::bindings::codegen::Bindings::MouseEventBinding;
|
||||||
use dom::bindings::codegen::Bindings::MouseEventBinding::MouseEventMethods;
|
use dom::bindings::codegen::Bindings::MouseEventBinding::MouseEventMethods;
|
||||||
use dom::bindings::codegen::Bindings::UIEventBinding::UIEventMethods;
|
use dom::bindings::codegen::Bindings::UIEventBinding::UIEventMethods;
|
||||||
use dom::bindings::conversions::Castable;
|
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
use dom::bindings::js::{JS, MutNullableHeap, Root, RootedReference};
|
use dom::bindings::js::{JS, MutNullableHeap, Root, RootedReference};
|
||||||
use dom::bindings::utils::reflect_dom_object;
|
use dom::bindings::reflector::reflect_dom_object;
|
||||||
use dom::event::{Event, EventBubbles, EventCancelable};
|
use dom::event::{Event, EventBubbles, EventCancelable};
|
||||||
use dom::eventtarget::EventTarget;
|
use dom::eventtarget::EventTarget;
|
||||||
use dom::uievent::UIEvent;
|
use dom::uievent::UIEvent;
|
||||||
|
|
|
@ -8,7 +8,8 @@ use dom::bindings::codegen::Bindings::NamedNodeMapBinding::NamedNodeMapMethods;
|
||||||
use dom::bindings::error::{Error, Fallible};
|
use dom::bindings::error::{Error, Fallible};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::{JS, Root};
|
use dom::bindings::js::{JS, Root};
|
||||||
use dom::bindings::utils::{Reflector, namespace_from_domstring, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
|
use dom::bindings::xmlname::namespace_from_domstring;
|
||||||
use dom::element::Element;
|
use dom::element::Element;
|
||||||
use dom::window::Window;
|
use dom::window::Window;
|
||||||
use string_cache::Atom;
|
use string_cache::Atom;
|
||||||
|
|
|
@ -6,7 +6,7 @@ use dom::bindings::codegen::Bindings::NavigatorBinding;
|
||||||
use dom::bindings::codegen::Bindings::NavigatorBinding::NavigatorMethods;
|
use dom::bindings::codegen::Bindings::NavigatorBinding::NavigatorMethods;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::utils::{Reflector, reflect_dom_object};
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
||||||
use dom::navigatorinfo;
|
use dom::navigatorinfo;
|
||||||
use dom::window::Window;
|
use dom::window::Window;
|
||||||
use util::str::DOMString;
|
use util::str::DOMString;
|
||||||
|
|
|
@ -19,18 +19,19 @@ use dom::bindings::codegen::Bindings::NamedNodeMapBinding::NamedNodeMapMethods;
|
||||||
use dom::bindings::codegen::Bindings::NodeBinding::{NodeConstants, NodeMethods};
|
use dom::bindings::codegen::Bindings::NodeBinding::{NodeConstants, NodeMethods};
|
||||||
use dom::bindings::codegen::Bindings::NodeListBinding::NodeListMethods;
|
use dom::bindings::codegen::Bindings::NodeListBinding::NodeListMethods;
|
||||||
use dom::bindings::codegen::Bindings::ProcessingInstructionBinding::ProcessingInstructionMethods;
|
use dom::bindings::codegen::Bindings::ProcessingInstructionBinding::ProcessingInstructionMethods;
|
||||||
use dom::bindings::codegen::InheritTypes::{CharacterDataTypeId, ElementTypeId, EventTargetTypeId};
|
|
||||||
use dom::bindings::codegen::InheritTypes::{HTMLElementTypeId, NodeTypeId};
|
|
||||||
use dom::bindings::codegen::UnionTypes::NodeOrString;
|
use dom::bindings::codegen::UnionTypes::NodeOrString;
|
||||||
use dom::bindings::conversions::{self, Castable, DerivedFrom};
|
use dom::bindings::conversions::{self, DerivedFrom};
|
||||||
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
use dom::bindings::error::{Error, ErrorResult, Fallible};
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
use dom::bindings::inheritance::{Castable, CharacterDataTypeId, ElementTypeId};
|
||||||
|
use dom::bindings::inheritance::{EventTargetTypeId, HTMLElementTypeId, NodeTypeId};
|
||||||
use dom::bindings::js::Root;
|
use dom::bindings::js::Root;
|
||||||
use dom::bindings::js::RootedReference;
|
use dom::bindings::js::RootedReference;
|
||||||
use dom::bindings::js::{JS, LayoutJS, MutNullableHeap};
|
use dom::bindings::js::{JS, LayoutJS, MutNullableHeap};
|
||||||
|
use dom::bindings::reflector::{Reflectable, reflect_dom_object};
|
||||||
use dom::bindings::trace::JSTraceable;
|
use dom::bindings::trace::JSTraceable;
|
||||||
use dom::bindings::trace::RootedVec;
|
use dom::bindings::trace::RootedVec;
|
||||||
use dom::bindings::utils::{Reflectable, namespace_from_domstring, reflect_dom_object};
|
use dom::bindings::xmlname::namespace_from_domstring;
|
||||||
use dom::characterdata::CharacterData;
|
use dom::characterdata::CharacterData;
|
||||||
use dom::comment::Comment;
|
use dom::comment::Comment;
|
||||||
use dom::document::{Document, DocumentSource, IsHTMLDocument};
|
use dom::document::{Document, DocumentSource, IsHTMLDocument};
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue