aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/eventtarget.rs
Commit message (Expand)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-287/+0
* Upgrade Rust.Jack Moffitt2014-08-021-12/+14
* Call the generated rather than the hand-written traits (fixes #2936).Ms2ger2014-07-271-12/+1
* Start dogfooding rust-url. Fix #1673.Simon Sapin2014-07-211-1/+1
* Don't fail on invalid JS syntax in event handlers.Matt Brubeck2014-07-181-13/+19
* Create Worker objects.Ms2ger2014-07-161-0/+1
* Implement stub classes for WorkerGlobalScope and DedicatedWorkerGlobalScope.Ms2ger2014-07-151-0/+2
* Make some DOM members private.Ms2ger2014-06-281-1/+1
* Upgrade to latest Rust.Manish Goregaokar2014-06-271-6/+6
* Remove Reflectable::mut_reflector.Ms2ger2014-06-131-4/+0
* Use internal mutability for EventTarget.Ms2ger2014-06-111-38/+56
* Use internal mutability for Event.Ms2ger2014-06-111-5/+5
* Remove needless '&self mut' from VirtualMethods trait.Tetsuharu OHZEKI2014-06-071-1/+1
* Upgrade Rust.Jack Moffitt2014-06-051-2/+2
* Rename BindingDeclarations to Bindings.Ms2ger2014-06-021-2/+2
* Include modules with only callbacks in BindingDeclarations.Ms2ger2014-05-311-1/+1
* Port modern callback handling code from Gecko, and copy related WebIDL parser...Josh Matthews2014-05-271-17/+24
* Compile JS strings when setting inline event handlers via element attributes.Josh Matthews2014-05-271-2/+40
* Add stubs for inline event handler manipulation.Josh Matthews2014-05-271-7/+81
* Update Rust.Ms2ger2014-05-221-2/+1
* Address review comments.Josh Matthews2014-05-031-2/+2
* Remove abstract_self.Josh Matthews2014-05-031-10/+15
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-20/+35
* 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 timers...Josh Matthews2014-05-031-6/+6
* Webidl and basic implementation of XHR objectManish Goregaokar2014-05-031-1/+3
* Remove the 'pub use self::BindingDeclarations::*;' export.Tetsuharu OHZEKI2014-05-011-1/+1
* Make EventTarget::handlers store a Vec.Ms2ger2014-04-281-6/+6
* This batch of changes upgrades Servo to work with the Rust upgrade as ofLars Bergstrom2014-04-271-5/+5
* Remove all traces of WindowProxy. Implement basic browser context concept and...Josh Matthews2014-04-221-1/+2
* Add support for trait-based virtual methods on Nodes, and use it for before_r...Josh Matthews2014-04-101-0/+7
* fix visibility warnings in script crate (#2044)Manish Goregaokar2014-04-061-1/+1
* Rust upgradesLars Bergstrom2014-03-181-1/+1
* 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-93/+14
* Move DOMString into servo_util.Ms2ger2014-02-141-2/+3
* Use DOMString more consistently.Ms2ger2014-02-131-1/+1
* Upgrade to latest Rust.Jack Moffitt2014-01-121-10/+10
* script: Eliminate the phantom type in favor of just whitelisting methodsPatrick Walton2013-12-171-2/+2
* Stop passing DOMStrings via borrowed pointer. (#1201)Tetsuharu OHZEKI2013-11-141-3/+3
* Don't pass nullable strings to native DOM methods that want non-nullable stri...Ms2ger2013-11-121-5/+5
* Make DOMString represent a non-nullable string.Ms2ger2013-11-121-2/+2
* auto merge of #1213 : jdm/servo/loadevent, r=kmcallisterbors-servo2013-11-121-1/+22
|\
| * Add a spec-incompliant load event.Josh Matthews2013-11-111-1/+22
* | Remove unneeded clones.Josh Matthews2013-11-071-2/+2
|/
* Remove Reflectable::GetParentObject.Ms2ger2013-11-061-15/+0
* Remove DerivedWrapper.Ms2ger2013-11-061-15/+2
* Remove Reflectable::wrap_object_shared.Ms2ger2013-11-061-9/+0
* Add basic event dispatch with bubbling, capturing, and propagation interruption.Josh Matthews2013-11-051-51/+73
* Add Event and EventTarget hierarchy via gross AbstractFoo mechanism.Josh Matthews2013-11-051-10/+90