Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cargoify servo | Jack Moffitt | 2014-09-08 | 1 | -182/+0 |
| | |||||
* | Call the generated rather than the hand-written traits (fixes #2936). | Ms2ger | 2014-07-27 | 1 | -30/+3 |
| | |||||
* | Introduce abstractions for global scopes. | Ms2ger | 2014-07-15 | 1 | -3/+4 |
| | | | | Part of #2811. | ||||
* | Rename variables that refer to global objects. | Ms2ger | 2014-07-15 | 1 | -2/+3 |
| | | | | | | | | This clarifies whether those variables will point to a Window object or an arbitrary global object. Note in particular that all IDL Constructors will accept an arbitrary global object. | ||||
* | Remove Reflectable::mut_reflector. | Ms2ger | 2014-06-13 | 1 | -4/+0 |
| | |||||
* | Use interior mutability for MouseEvent. | Ms2ger | 2014-06-11 | 1 | -48/+47 |
| | |||||
* | Rename BindingDeclarations to Bindings. | Ms2ger | 2014-06-02 | 1 | -1/+1 |
| | |||||
* | Remove not-yet-implemented APIs, and update MouseEvent to specification. | Ms2ger | 2014-06-02 | 1 | -21/+11 |
| | |||||
* | Use Cell/RefCell for interior mutability of MouseEvent. | Tetsuharu OHZEKI | 2014-05-30 | 1 | -3/+4 |
| | |||||
* | Update Rust. | Ms2ger | 2014-05-22 | 1 | -1/+1 |
| | |||||
* | Add MouseEvent::new_uninitialized(). | Tetsuharu OHZEKI | 2014-05-10 | 1 | -8/+32 |
| | |||||
* | Make dictionaries contain Root<T> values instead of JS<T>, ensuring that ↵ | Josh Matthews | 2014-05-03 | 1 | -4/+2 |
| | | | | they will not be collected while the dictionary is alive. | ||||
* | Address review comments. | Josh Matthews | 2014-05-03 | 1 | -3/+3 |
| | |||||
* | Remove all root collections. | Josh Matthews | 2014-05-03 | 1 | -5/+4 |
| | |||||
* | s/Unrooted/Temporary/g | Josh Matthews | 2014-05-03 | 1 | -7/+7 |
| | |||||
* | Move WebIDL methods to traits implemented by JSRef types. | Josh Matthews | 2014-05-03 | 1 | -36/+73 |
| | |||||
* | Implement safe rooting strategy via Unrooted, Root, JSRef, and JS. | Josh Matthews | 2014-05-03 | 1 | -7/+7 |
| | |||||
* | Turn on GC all the time. Fix rooting errors during parsing and storing ↵ | Josh Matthews | 2014-05-03 | 1 | -8/+11 |
| | | | | timers. Fix borrow errors during tracing. | ||||
* | 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 | -11/+11 |
| | | | | | | 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. | ||||
* | Remove all traces of WindowProxy. Implement basic browser context concept ↵ | Josh Matthews | 2014-04-22 | 1 | -2/+1 |
| | | | | and outerizing of inner windows. | ||||
* | Warning police. | Josh Matthews | 2014-03-18 | 1 | -3/+2 |
| | |||||
* | Pass &JS<Window> to reflect_dom_object. | Ms2ger | 2014-03-04 | 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 | -24/+33 |
| | |||||
* | Move DOMString into servo_util. | Ms2ger | 2014-02-14 | 1 | -1/+2 |
| | |||||
* | Stop passing DOMStrings via borrowed pointer. (#1201) | Tetsuharu OHZEKI | 2013-11-14 | 1 | -3/+3 |
| | |||||
* | Remove Reflectable::GetParentObject. | Ms2ger | 2013-11-06 | 1 | -6/+0 |
| | |||||
* | Remove Reflectable::wrap_object_shared. | Ms2ger | 2013-11-06 | 1 | -5/+1 |
| | |||||
* | Add Event and EventTarget hierarchy via gross AbstractFoo mechanism. | Josh Matthews | 2013-11-05 | 1 | -28/+33 |
| | |||||
* | Remove unused init_wrapper functions. | Ms2ger | 2013-10-23 | 1 | -4/+0 |
| | |||||
* | Eagerly reflect {,UI,Mouse}Event | Keegan McAllister | 2013-10-22 | 1 | -13/+14 |
| | |||||
* | Merge BindingObject and Reflectable. | Ms2ger | 2013-10-18 | 1 | -3/+1 |
| | |||||
* | Remove unused DerivedWrapper implementations. | Ms2ger | 2013-10-18 | 1 | -8/+2 |
| | |||||
* | Remove DerivedWrapper::wrap_shared, as it's unused. | Ms2ger | 2013-10-18 | 1 | -13/+0 |
| | |||||
* | Remove unused aTriedToWrap argument. | Ms2ger | 2013-10-17 | 1 | -2/+1 |
| | |||||
* | Introduce mutable/immutable variants of reflector() with named lifetimes, ↵ | Bobby Holley | 2013-10-10 | 1 | -2/+6 |
| | | | | and kill unsafe casts. | ||||
* | Rename get_wrappercache() to reflector(). v1 | Bobby Holley | 2013-10-09 | 1 | -2/+2 |
| | | | | I also updated some variable names in the codegen. | ||||
* | Rename WrapperCache to Reflector. | Bobby Holley | 2013-10-09 | 1 | -2/+2 |
| | | | | | I think the abstraction from the raw JSObject is still probably worthwhile for now. | ||||
* | Rename CacheableWrapper to Reflectable. | Bobby Holley | 2013-10-09 | 1 | -3/+3 |
| | |||||
* | bindings: Return errors in Result rather than setting an out parameter | Keegan McAllister | 2013-09-18 | 1 | -9/+8 |
| | | | | Fixes #909. | ||||
* | Update Rust | Brian Anderson | 2013-08-29 | 1 | -0/+1 |
| | |||||
* | Generate bindings for Window. | Josh Matthews | 2013-07-30 | 1 | -1/+1 |
| | |||||
* | Generate HTMLDocument bindings. Introduce invariant into generated bindings ↵ | Josh Matthews | 2013-07-30 | 1 | -4/+4 |
| | | | | that associated DOM classes are named the same as their interfaces, so Event and Event_ need to be swapped. | ||||
* | structural changes to support Iframes | Tim Kuehn | 2013-07-29 | 1 | -8/+2 |
| | |||||
* | Generate DOM bindings for UIEvent and MouseEvent. | Josh Matthews | 2013-07-10 | 1 | -0/+184 |