Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cargoify servo | Jack Moffitt | 2014-09-08 | 1 | -513/+0 |
| | |||||
* | implement window.frames | Rohan Prinja | 2014-08-30 | 1 | -0/+5 |
| | |||||
* | Implement window.atob/btoa | Chris Paris | 2014-08-15 | 1 | -1/+77 |
| | |||||
* | Decouple compositing and script crates. | Josh Matthews | 2014-08-08 | 1 | -1/+5 |
| | |||||
* | Support window.parent in the one-window case. | James Graham | 2014-07-29 | 1 | -0/+5 |
| | |||||
* | Call the generated rather than the hand-written traits (fixes #2936). | Ms2ger | 2014-07-27 | 1 | -27/+1 |
| | |||||
* | Remove some unnecessary uses of the serialize module. | Ms2ger | 2014-07-24 | 1 | -4/+1 |
| | |||||
* | Implement Window.screen. | Ms2ger | 2014-07-24 | 1 | -1/+13 |
| | |||||
* | Used rust-url directly instead of servo_util::url | Simon Sapin | 2014-07-21 | 1 | -4/+5 |
| | | | | The latter now only calls the former. | ||||
* | Move timer firing implemention into Window #1992 | Edit Balint | 2014-07-16 | 1 | -0/+27 |
| | |||||
* | Introduce abstractions for global scopes. | Ms2ger | 2014-07-15 | 1 | -1/+2 |
| | | | | Part of #2811. | ||||
* | Return a Temporary from *Binding::Wrap. | Ms2ger | 2014-07-10 | 1 | -1/+1 |
| | | | | | | Returning a JS<T> is GC-unsafe. This commit also includes some cleanup around Node and Document reflection. | ||||
* | Make some DOM members private. | Ms2ger | 2014-06-28 | 1 | -9/+9 |
| | | | | | I have not reviewed if this is the complete set of members that can be made private. | ||||
* | Upgrade to latest Rust. | Manish Goregaokar | 2014-06-27 | 1 | -2/+2 |
| | |||||
* | Use Traceable for primitive types and DOMString | Manish Goregaokar | 2014-06-16 | 1 | -2/+2 |
| | |||||
* | auto merge of #2585 : ebalint/servo/2530, r=jdm | bors-servo | 2014-06-13 | 1 | -1/+2 |
|\ | |||||
| * | Split Page code out of script_task.rs #2530 | Edit Balint | 2014-06-13 | 1 | -1/+2 |
| | | |||||
* | | Remove Reflectable::mut_reflector. | Ms2ger | 2014-06-13 | 1 | -4/+0 |
|/ | |||||
* | Don't fail on clearing nonexistant timeouts | Manish Goregaokar | 2014-06-13 | 1 | -1/+1 |
| | |||||
* | Use internal mutability for Window::{active_timers, next_timer_handle}. | Ms2ger | 2014-06-11 | 1 | -20/+21 |
| | |||||
* | Use internal mutability for Window::browser_context. | Ms2ger | 2014-06-11 | 1 | -6/+6 |
| | |||||
* | Use internal mutability for EventTarget. | Ms2ger | 2014-06-11 | 1 | -12/+12 |
| | |||||
* | Support GlobalEventHandlers.onclick. | Ms2ger | 2014-06-08 | 1 | -0/+12 |
| | |||||
* | Upgrade Rust. | Jack Moffitt | 2014-06-05 | 1 | -2/+2 |
| | |||||
* | Remove needless '&mut self' from WindowMethods. | Tetsuharu OHZEKI | 2014-06-04 | 1 | -8/+8 |
| | |||||
* | Rename BindingDeclarations to Bindings. | Ms2ger | 2014-06-02 | 1 | -2/+2 |
| | |||||
* | Remove not-yet-implemented APIs, and update MouseEvent to specification. | Ms2ger | 2014-06-02 | 1 | -61/+1 |
| | |||||
* | Include modules with only callbacks in BindingDeclarations. | Ms2ger | 2014-05-31 | 1 | -2/+2 |
| | | | | | This commit also includes improvements to the 'use' order in some of the touched files. | ||||
* | Use Cell/RefCell for interior mutability of Window. | Tetsuharu OHZEKI | 2014-05-30 | 1 | -16/+17 |
| | |||||
* | Port modern callback handling code from Gecko, and copy related WebIDL ↵ | Josh Matthews | 2014-05-27 | 1 | -13/+15 |
| | | | | parser bits too. | ||||
* | Add stubs for inline event handler manipulation. | Josh Matthews | 2014-05-27 | 1 | -3/+39 |
| | |||||
* | Use *mut T for the T* pointers in SpiderMonkey. | Ms2ger | 2014-05-26 | 1 | -8/+8 |
| | |||||
* | Initial spec-incompliant implementation of default click action for anchor ↵ | Tetsuharu OHZEKI | 2014-05-23 | 1 | -1/+16 |
| | | | | | | | | | | | | | elements. This is cherry-picked from https://github.com/mozilla/servo/pull/1688: * Initial spec-incompliant implementation of default click action for anchor elements. * Add documentation; gut the new document URL loading method and move it all into the new Window method. * Add test for default event prevention. Original developer: Josh Matthews <josh@joshmatthews.net> | ||||
* | Update Rust. | Ms2ger | 2014-05-22 | 1 | -5/+5 |
| | |||||
* | Avoid unnecessary Rc clone in Window::new. | Ms2ger | 2014-05-14 | 1 | -1/+1 |
| | |||||
* | Move Window helper methods to a WindowHelpers trait | Tetsuharu OHZEKI | 2014-05-14 | 1 | -19/+33 |
| | |||||
* | Drop the pointless indirection in Window::active_timers. | Ms2ger | 2014-05-12 | 1 | -2/+2 |
| | |||||
* | Move debug functions to Window IDL. | Ms2ger | 2014-05-09 | 1 | -0/+13 |
| | | | | | | | | This is a cleaner way to expose those functions, and makes it possible to remove a significant amount code in rust-mozjs. The assert() function is no longer exposed, as it was unused and not very useful. | ||||
* | Add Performance object to Window and implement Performance::Now() | Gulshan Singh | 2014-05-07 | 1 | -0/+18 |
| | |||||
* | Replace all ~"" with "".to_owned(). | Ms2ger | 2014-05-03 | 1 | -2/+2 |
| | |||||
* | Address review comments. | Josh Matthews | 2014-05-03 | 1 | -2/+2 |
| | |||||
* | Root Temporary values for the duration of their lifetime. | Josh Matthews | 2014-05-03 | 1 | -2/+2 |
| | |||||
* | s/Unrooted/Temporary/g | Josh Matthews | 2014-05-03 | 1 | -22/+22 |
| | |||||
* | Remove abstract_self. | Josh Matthews | 2014-05-03 | 1 | -15/+18 |
| | |||||
* | Move WebIDL methods to traits implemented by JSRef types. | Josh Matthews | 2014-05-03 | 1 | -50/+79 |
| | |||||
* | Implement safe rooting strategy via Unrooted, Root, JSRef, and JS. | Josh Matthews | 2014-05-03 | 1 | -19/+19 |
| | |||||
* | Turn on GC all the time. Fix rooting errors during parsing and storing ↵ | Josh Matthews | 2014-05-03 | 1 | -40/+37 |
| | | | | timers. Fix borrow errors during tracing. | ||||
* | Remove the 'pub use self::BindingDeclarations::*;' export. | Tetsuharu OHZEKI | 2014-05-01 | 1 | -1/+1 |
| | |||||
* | Remove unused support for passing extra arguments for timers. | Ms2ger | 2014-04-28 | 1 | -2/+0 |
| | |||||
* | This batch of changes upgrades Servo to work with the Rust upgrade as of | Lars Bergstrom | 2014-04-27 | 1 | -24/+21 |
| | | | | | | 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. |