aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmlelement.rs
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-120/+0
|
* Pass an Atom to before_remove_attr and after_set_attr.Ms2ger2014-08-161-2/+4
|
* Upgrade Rust.Jack Moffitt2014-08-021-2/+2
|
* Call the generated rather than the hand-written traits (fixes #2936).Ms2ger2014-07-271-8/+2
|
* Remove generate_cacheable_wrapper!Tetsuharu OHZEKI2014-06-281-1/+7
|
* Upgrade to latest Rust.Manish Goregaokar2014-06-271-2/+2
|
* Remove needless mutabilities from script crate.Tetsuharu OHZEKI2014-06-221-1/+1
|
* Use internal mutability for EventTarget.Ms2ger2014-06-111-10/+8
|
* Support GlobalEventHandlers.onclick.Ms2ger2014-06-081-1/+34
|
* Remove needless '&self mut' from VirtualMethods trait.Tetsuharu OHZEKI2014-06-071-3/+3
|
* Rename BindingDeclarations to Bindings.Ms2ger2014-06-021-2/+2
|
* Remove not-yet-implemented members from IDL and Rust code.Ms2ger2014-06-011-151/+0
| | | | | | | | These stub implementations bring no value, and significantly increased maintenance costs. This commit also synchronizes the IDL with the HTML specification and makes the URLs consistent.
* Include modules with only callbacks in BindingDeclarations.Ms2ger2014-05-311-5/+6
| | | | | This commit also includes improvements to the 'use' order in some of the touched files.
* Port modern callback handling code from Gecko, and copy related WebIDL ↵Josh Matthews2014-05-271-9/+9
| | | | parser bits too.
* Implement window forwarding for body event handlers.Josh Matthews2014-05-271-4/+36
|
* Use *mut T for the T* pointers in SpiderMonkey.Ms2ger2014-05-261-4/+4
|
* Update Rust.Ms2ger2014-05-221-1/+1
|
* Replace all ~"" with "".to_owned().Ms2ger2014-05-031-6/+6
|
* Address review comments.Josh Matthews2014-05-031-3/+3
|
* Address review comments.Josh Matthews2014-05-031-3/+3
|
* s/Unrooted/Temporary/gJosh Matthews2014-05-031-4/+4
|
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-31/+64
|
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-6/+6
|
* Turn on GC all the time. Fix rooting errors during parsing and storing ↵Josh Matthews2014-05-031-3/+3
| | | | timers. Fix borrow errors during tracing.
* Remove the 'pub use self::BindingDeclarations::*;' export.Tetsuharu OHZEKI2014-05-011-1/+1
|
* This batch of changes upgrades Servo to work with the Rust upgrade as ofLars Bergstrom2014-04-271-1/+1
| | | | | | April 10, 2014. The main changes are to privacy, to work around the issues with incorrect bounds on the libstd `Arc<Mutex<T>>`, and the various API changes strewn throughout the libraries.
* Implement Element.prefix (Fixes #1737)Sankha Narayan Guria2014-04-221-1/+1
|
* auto merge of #2087 : Ms2ger/servo/vtable2, r=jdmbors-servo2014-04-111-0/+9
|\ | | | | | | | | | | Fixes #1527. Does *not* include the code for #1528. (Originally by @jdm in #1688 and #1866.)
| * Add support for trait-based virtual methods on Nodes, and use it for ↵Josh Matthews2014-04-101-0/+9
| | | | | | | | before_remove_attr and after_set_attr.
* | Fix HTMLElementDerived::is_htmlelement to take non-HTML elements into account.Ms2ger2014-04-101-0/+1
|/
* Implement Element.classNameBruno de Oliveira Abinader2014-03-131-7/+0
|
* Use FooValue() functions.Ms2ger2014-03-091-3/+2
|
* Move JSVal into the jsval module.Ms2ger2014-03-081-1/+2
|
* Move Error, Fallible, ErrorResult out of utils.rs (fixes #1749)Saurabh Anand2014-02-281-1/+1
|
* Implement JSManaged for DOM objects.Josh Matthews2014-02-241-8/+21
|
* Move DOMString into servo_util.Ms2ger2014-02-141-1/+2
|
* Use DOMString more consistently.Ms2ger2014-02-131-2/+2
|
* Move script::dom::namespace into util, in order to use it from style later.Simon Sapin2014-01-251-1/+1
|
* script: Eliminate the phantom type in favor of just whitelisting methodsPatrick Walton2013-12-171-3/+3
| | | | | | | that layout can safely call. This is simpler. Currently, the set of methods is not safe, but I plan to lock it down more soon.
* Rename some 'new' functions to 'new_inherited'.Ms2ger2013-12-121-1/+1
|
* add namespaces to elementsDaniel Glazman2013-12-091-1/+2
|
* Stop passing DOMStrings via borrowed pointer. (#1201)Tetsuharu OHZEKI2013-11-141-6/+6
|
* Don't pass nullable strings to native DOM methods that want non-nullable ↵Ms2ger2013-11-121-20/+20
| | | | strings. Fixes #1207.
* Make DOMString represent a non-nullable string.Ms2ger2013-11-121-13/+13
|
* Introduce HTMLElement::new.Ms2ger2013-11-021-2/+8
|
* Rename HTMLElement::new to HTMLElement::new_inherited.Ms2ger2013-11-021-1/+1
|
* Auto-generate some binding codes for HTMLElement, Element, CharacterData.Tetsuharu OHZEKI2013-10-161-24/+1
|
* Introduce mutable/immutable variants of reflector() with named lifetimes, ↵Bobby Holley2013-10-101-1/+5
| | | | and kill unsafe casts.
* Issue #888 - Node's owner document should never be None.Ms2ger2013-10-101-2/+3
|
* Rename get_wrappercache() to reflector(). v1Bobby Holley2013-10-091-2/+2
| | | | I also updated some variable names in the codegen.