| Commit message (Expand) | Author | Age | Files | Lines |
* | Cargoify servo | Jack Moffitt | 2014-09-08 | 1 | -120/+0 |
* | Pass an Atom to before_remove_attr and after_set_attr. | Ms2ger | 2014-08-16 | 1 | -2/+4 |
* | Upgrade Rust. | Jack Moffitt | 2014-08-02 | 1 | -2/+2 |
* | Call the generated rather than the hand-written traits (fixes #2936). | Ms2ger | 2014-07-27 | 1 | -8/+2 |
* | Remove generate_cacheable_wrapper! | Tetsuharu OHZEKI | 2014-06-28 | 1 | -1/+7 |
* | Upgrade to latest Rust. | Manish Goregaokar | 2014-06-27 | 1 | -2/+2 |
* | Remove needless mutabilities from script crate. | Tetsuharu OHZEKI | 2014-06-22 | 1 | -1/+1 |
* | Use internal mutability for EventTarget. | Ms2ger | 2014-06-11 | 1 | -10/+8 |
* | Support GlobalEventHandlers.onclick. | Ms2ger | 2014-06-08 | 1 | -1/+34 |
* | Remove needless '&self mut' from VirtualMethods trait. | Tetsuharu OHZEKI | 2014-06-07 | 1 | -3/+3 |
* | Rename BindingDeclarations to Bindings. | Ms2ger | 2014-06-02 | 1 | -2/+2 |
* | Remove not-yet-implemented members from IDL and Rust code. | Ms2ger | 2014-06-01 | 1 | -151/+0 |
* | Include modules with only callbacks in BindingDeclarations. | Ms2ger | 2014-05-31 | 1 | -5/+6 |
* | Port modern callback handling code from Gecko, and copy related WebIDL parser... | Josh Matthews | 2014-05-27 | 1 | -9/+9 |
* | Implement window forwarding for body event handlers. | Josh Matthews | 2014-05-27 | 1 | -4/+36 |
* | Use *mut T for the T* pointers in SpiderMonkey. | Ms2ger | 2014-05-26 | 1 | -4/+4 |
* | Update Rust. | Ms2ger | 2014-05-22 | 1 | -1/+1 |
* | Replace all ~"" with "".to_owned(). | Ms2ger | 2014-05-03 | 1 | -6/+6 |
* | Address review comments. | Josh Matthews | 2014-05-03 | 1 | -3/+3 |
* | Address review comments. | Josh Matthews | 2014-05-03 | 1 | -3/+3 |
* | s/Unrooted/Temporary/g | Josh Matthews | 2014-05-03 | 1 | -4/+4 |
* | Move WebIDL methods to traits implemented by JSRef types. | Josh Matthews | 2014-05-03 | 1 | -31/+64 |
* | 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 | -3/+3 |
* | Remove the 'pub use self::BindingDeclarations::*;' export. | Tetsuharu OHZEKI | 2014-05-01 | 1 | -1/+1 |
* | This batch of changes upgrades Servo to work with the Rust upgrade as of | Lars Bergstrom | 2014-04-27 | 1 | -1/+1 |
* | Implement Element.prefix (Fixes #1737) | Sankha Narayan Guria | 2014-04-22 | 1 | -1/+1 |
* | auto merge of #2087 : Ms2ger/servo/vtable2, r=jdm | bors-servo | 2014-04-11 | 1 | -0/+9 |
|\ |
|
| * | Add support for trait-based virtual methods on Nodes, and use it for before_r... | Josh Matthews | 2014-04-10 | 1 | -0/+9 |
* | | Fix HTMLElementDerived::is_htmlelement to take non-HTML elements into account. | Ms2ger | 2014-04-10 | 1 | -0/+1 |
|/ |
|
* | Implement Element.className | Bruno de Oliveira Abinader | 2014-03-13 | 1 | -7/+0 |
* | Use FooValue() functions. | Ms2ger | 2014-03-09 | 1 | -3/+2 |
* | Move JSVal into the jsval module. | Ms2ger | 2014-03-08 | 1 | -1/+2 |
* | 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 | -8/+21 |
* | Move DOMString into servo_util. | Ms2ger | 2014-02-14 | 1 | -1/+2 |
* | Use DOMString more consistently. | Ms2ger | 2014-02-13 | 1 | -2/+2 |
* | Move script::dom::namespace into util, in order to use it from style later. | Simon Sapin | 2014-01-25 | 1 | -1/+1 |
* | script: Eliminate the phantom type in favor of just whitelisting methods | Patrick Walton | 2013-12-17 | 1 | -3/+3 |
* | Rename some 'new' functions to 'new_inherited'. | Ms2ger | 2013-12-12 | 1 | -1/+1 |
* | add namespaces to elements | Daniel Glazman | 2013-12-09 | 1 | -1/+2 |
* | Stop passing DOMStrings via borrowed pointer. (#1201) | Tetsuharu OHZEKI | 2013-11-14 | 1 | -6/+6 |
* | Don't pass nullable strings to native DOM methods that want non-nullable stri... | Ms2ger | 2013-11-12 | 1 | -20/+20 |
* | Make DOMString represent a non-nullable string. | Ms2ger | 2013-11-12 | 1 | -13/+13 |
* | Introduce HTMLElement::new. | Ms2ger | 2013-11-02 | 1 | -2/+8 |
* | Rename HTMLElement::new to HTMLElement::new_inherited. | Ms2ger | 2013-11-02 | 1 | -1/+1 |
* | Auto-generate some binding codes for HTMLElement, Element, CharacterData. | Tetsuharu OHZEKI | 2013-10-16 | 1 | -24/+1 |
* | Introduce mutable/immutable variants of reflector() with named lifetimes, and... | Bobby Holley | 2013-10-10 | 1 | -1/+5 |
* | Issue #888 - Node's owner document should never be None. | Ms2ger | 2013-10-10 | 1 | -2/+3 |
* | Rename get_wrappercache() to reflector(). v1 | Bobby Holley | 2013-10-09 | 1 | -2/+2 |