| Commit message (Expand) | Author | Age | Files | Lines |
* | Cargoify servo | Jack Moffitt | 2014-09-08 | 1 | -287/+0 |
* | Upgrade Rust. | Jack Moffitt | 2014-08-02 | 1 | -12/+14 |
* | Call the generated rather than the hand-written traits (fixes #2936). | Ms2ger | 2014-07-27 | 1 | -12/+1 |
* | Start dogfooding rust-url. Fix #1673. | Simon Sapin | 2014-07-21 | 1 | -1/+1 |
* | Don't fail on invalid JS syntax in event handlers. | Matt Brubeck | 2014-07-18 | 1 | -13/+19 |
* | Create Worker objects. | Ms2ger | 2014-07-16 | 1 | -0/+1 |
* | Implement stub classes for WorkerGlobalScope and DedicatedWorkerGlobalScope. | Ms2ger | 2014-07-15 | 1 | -0/+2 |
* | Make some DOM members private. | Ms2ger | 2014-06-28 | 1 | -1/+1 |
* | Upgrade to latest Rust. | Manish Goregaokar | 2014-06-27 | 1 | -6/+6 |
* | Remove Reflectable::mut_reflector. | Ms2ger | 2014-06-13 | 1 | -4/+0 |
* | Use internal mutability for EventTarget. | Ms2ger | 2014-06-11 | 1 | -38/+56 |
* | Use internal mutability for Event. | Ms2ger | 2014-06-11 | 1 | -5/+5 |
* | Remove needless '&self mut' from VirtualMethods trait. | Tetsuharu OHZEKI | 2014-06-07 | 1 | -1/+1 |
* | Upgrade Rust. | Jack Moffitt | 2014-06-05 | 1 | -2/+2 |
* | Rename BindingDeclarations to Bindings. | Ms2ger | 2014-06-02 | 1 | -2/+2 |
* | Include modules with only callbacks in BindingDeclarations. | Ms2ger | 2014-05-31 | 1 | -1/+1 |
* | Port modern callback handling code from Gecko, and copy related WebIDL parser... | Josh Matthews | 2014-05-27 | 1 | -17/+24 |
* | Compile JS strings when setting inline event handlers via element attributes. | Josh Matthews | 2014-05-27 | 1 | -2/+40 |
* | Add stubs for inline event handler manipulation. | Josh Matthews | 2014-05-27 | 1 | -7/+81 |
* | Update Rust. | Ms2ger | 2014-05-22 | 1 | -2/+1 |
* | Address review comments. | Josh Matthews | 2014-05-03 | 1 | -2/+2 |
* | Remove abstract_self. | Josh Matthews | 2014-05-03 | 1 | -10/+15 |
* | Move WebIDL methods to traits implemented by JSRef types. | Josh Matthews | 2014-05-03 | 1 | -20/+35 |
* | Implement safe rooting strategy via Unrooted, Root, JSRef, and JS. | Josh Matthews | 2014-05-03 | 1 | -6/+6 |
* | Turn on GC all the time. Fix rooting errors during parsing and storing timers... | Josh Matthews | 2014-05-03 | 1 | -6/+6 |
* | Webidl and basic implementation of XHR object | Manish Goregaokar | 2014-05-03 | 1 | -1/+3 |
* | Remove the 'pub use self::BindingDeclarations::*;' export. | Tetsuharu OHZEKI | 2014-05-01 | 1 | -1/+1 |
* | Make EventTarget::handlers store a Vec. | Ms2ger | 2014-04-28 | 1 | -6/+6 |
* | This batch of changes upgrades Servo to work with the Rust upgrade as of | Lars Bergstrom | 2014-04-27 | 1 | -5/+5 |
* | Remove all traces of WindowProxy. Implement basic browser context concept and... | Josh Matthews | 2014-04-22 | 1 | -1/+2 |
* | Add support for trait-based virtual methods on Nodes, and use it for before_r... | Josh Matthews | 2014-04-10 | 1 | -0/+7 |
* | fix visibility warnings in script crate (#2044) | Manish Goregaokar | 2014-04-06 | 1 | -1/+1 |
* | Rust upgrades | Lars Bergstrom | 2014-03-18 | 1 | -1/+1 |
* | Move Error, Fallible, ErrorResult out of utils.rs (fixes #1749) | Saurabh Anand | 2014-02-28 | 1 | -1/+1 |
* | Implement JSManaged for DOM objects. | Josh Matthews | 2014-02-24 | 1 | -93/+14 |
* | Move DOMString into servo_util. | Ms2ger | 2014-02-14 | 1 | -2/+3 |
* | Use DOMString more consistently. | Ms2ger | 2014-02-13 | 1 | -1/+1 |
* | Upgrade to latest Rust. | Jack Moffitt | 2014-01-12 | 1 | -10/+10 |
* | script: Eliminate the phantom type in favor of just whitelisting methods | Patrick Walton | 2013-12-17 | 1 | -2/+2 |
* | Stop passing DOMStrings via borrowed pointer. (#1201) | Tetsuharu OHZEKI | 2013-11-14 | 1 | -3/+3 |
* | Don't pass nullable strings to native DOM methods that want non-nullable stri... | Ms2ger | 2013-11-12 | 1 | -5/+5 |
* | Make DOMString represent a non-nullable string. | Ms2ger | 2013-11-12 | 1 | -2/+2 |
* | auto merge of #1213 : jdm/servo/loadevent, r=kmcallister | bors-servo | 2013-11-12 | 1 | -1/+22 |
|\ |
|
| * | Add a spec-incompliant load event. | Josh Matthews | 2013-11-11 | 1 | -1/+22 |
* | | Remove unneeded clones. | Josh Matthews | 2013-11-07 | 1 | -2/+2 |
|/ |
|
* | Remove Reflectable::GetParentObject. | Ms2ger | 2013-11-06 | 1 | -15/+0 |
* | Remove DerivedWrapper. | Ms2ger | 2013-11-06 | 1 | -15/+2 |
* | Remove Reflectable::wrap_object_shared. | Ms2ger | 2013-11-06 | 1 | -9/+0 |
* | Add basic event dispatch with bubbling, capturing, and propagation interruption. | Josh Matthews | 2013-11-05 | 1 | -51/+73 |
* | Add Event and EventTarget hierarchy via gross AbstractFoo mechanism. | Josh Matthews | 2013-11-05 | 1 | -10/+90 |