Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cargoify servo | Jack Moffitt | 2014-09-08 | 1 | -174/+0 |
| | |||||
* | Decouple compositing and script crates. | Josh Matthews | 2014-08-08 | 1 | -12/+0 |
| | |||||
* | Upgrade Rust. | Jack Moffitt | 2014-08-02 | 1 | -4/+4 |
| | |||||
* | Call the generated rather than the hand-written traits (fixes #2936). | Ms2ger | 2014-07-27 | 1 | -17/+1 |
| | |||||
* | Implement MessageEvent. | Ms2ger | 2014-07-16 | 1 | -0/+1 |
| | |||||
* | Introduce abstractions for global scopes. | Ms2ger | 2014-07-15 | 1 | -4/+4 |
| | | | | Part of #2811. | ||||
* | Rename variables that refer to global objects. | Ms2ger | 2014-07-15 | 1 | -4/+4 |
| | | | | | | | | 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. | ||||
* | Make some DOM members private. | Ms2ger | 2014-06-28 | 1 | -2/+2 |
| | | | | | 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 | -1/+1 |
| | |||||
* | Separate "desktop" and "mobile" zoom calculations. | Matt Brubeck | 2014-06-20 | 1 | -3/+2 |
| | | | | | | | | This ensures that the layout viewport responds to each type of zoom correctly, and lays the ground for CSS Media Queries and CSS Device Adaption. Until we have proper touch support, mobile-style "pinch" zoom can be simulated by holding Ctrl while scrolling with a mousewheel or trackpad gesture. | ||||
* | Use Traceable for primitive types and DOMString | Manish Goregaokar | 2014-06-16 | 1 | -21/+21 |
| | |||||
* | Remove Reflectable::mut_reflector. | Ms2ger | 2014-06-13 | 1 | -4/+0 |
| | |||||
* | Use internal mutability for Event. | Ms2ger | 2014-06-11 | 1 | -52/+53 |
| | |||||
* | Outside of compositor, store window size in CSS px | Matt Brubeck | 2014-06-09 | 1 | -1/+3 |
| | | | | | | | | | | This fixes an issue where the CSS viewport was too large on high-DPI displays because it was set to the window size in device pixels, instead of px. This patch ensures that the window size is converted from device pixels to px before being passed to script/layout code. The Window trait now exposes the window size in both device pixels and density-independent screen coordinates, with clearer method names. | ||||
* | Upgrade Rust. | Jack Moffitt | 2014-06-05 | 1 | -1/+1 |
| | |||||
* | Rename BindingDeclarations to Bindings. | Ms2ger | 2014-06-02 | 1 | -2/+2 |
| | |||||
* | Implement Event::new_initialized and initialize the event in Event::new. | Ms2ger | 2014-05-31 | 1 | -4/+11 |
| | |||||
* | Use Cell/RefCell for interior mutability of Event. | Tetsuharu OHZEKI | 2014-05-30 | 1 | -7/+8 |
| | |||||
* | Implement CustomEvent (#2173) | Manish Goregaokar | 2014-05-24 | 1 | -3/+4 |
| | |||||
* | Update Rust. | Ms2ger | 2014-05-22 | 1 | -1/+1 |
| | |||||
* | Add ProgressEvent interface | Manish Goregaokar | 2014-05-08 | 1 | -1/+2 |
| | |||||
* | Replace all ~"" with "".to_owned(). | Ms2ger | 2014-05-03 | 1 | -1/+1 |
| | |||||
* | Address review comments. | Josh Matthews | 2014-05-03 | 1 | -3/+3 |
| | |||||
* | Address review comments. | Josh Matthews | 2014-05-03 | 1 | -1/+1 |
| | |||||
* | Remove all root collections. | Josh Matthews | 2014-05-03 | 1 | -3/+2 |
| | |||||
* | s/Unrooted/Temporary/g | Josh Matthews | 2014-05-03 | 1 | -10/+10 |
| | |||||
* | Move WebIDL methods to traits implemented by JSRef types. | Josh Matthews | 2014-05-03 | 1 | -22/+40 |
| | |||||
* | Implement safe rooting strategy via Unrooted, Root, JSRef, and JS. | Josh Matthews | 2014-05-03 | 1 | -10/+11 |
| | |||||
* | Turn on GC all the time. Fix rooting errors during parsing and storing ↵ | Josh Matthews | 2014-05-03 | 1 | -3/+3 |
| | | | | timers. Fix borrow errors during tracing. | ||||
* | Remove the 'pub use self::BindingDeclarations::*;' export. | Tetsuharu OHZEKI | 2014-05-01 | 1 | -2/+2 |
| | |||||
* | Removed unnecessary return and moved crate import to script.rs | Gulshan Singh | 2014-04-30 | 1 | -3/+3 |
| | |||||
* | Make TimeStamp in event.rs return the actual timestamp | Gulshan Singh | 2014-04-30 | 1 | -1/+5 |
| | |||||
* | auto merge of #2233 : ↵ | bors-servo | 2014-04-28 | 1 | -1/+1 |
|\ | | | | | | | | | | | campadrenalin/servo/initialize-event-bubbling-to-false, r=Ms2ger Fixes #2183. | ||||
| * | #2183 Initialize Event::bubbles to false | Philip Horger | 2014-04-25 | 1 | -1/+1 |
| | | |||||
* | | This batch of changes upgrades Servo to work with the Rust upgrade as of | Lars Bergstrom | 2014-04-27 | 1 | -14/+14 |
|/ | | | | | | 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. | ||||
* | set the right flags and attrs for InitEvent | Harry Maclean | 2014-04-20 | 1 | -3/+10 |
| | |||||
* | Rename Event::default_prevented -> Event::canceled to better match spec (#2177) | Manish Goregaokar | 2014-04-19 | 1 | -5/+5 |
| | |||||
* | Fix most defaultPrevented test failures (#2172) | Manish Goregaokar | 2014-04-19 | 1 | -0/+1 |
| | |||||
* | Remove trailing whitespace. | Ms2ger | 2014-04-07 | 1 | -1/+1 |
| | |||||
* | Warning police. | Josh Matthews | 2014-03-18 | 1 | -8/+7 |
| | |||||
* | Use 'TConstants' instead of magic numbers. | Tetsuharu OHZEKI | 2014-03-16 | 1 | -4/+5 |
| | |||||
* | 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 | -119/+21 |
| | |||||
* | Move DOMString into servo_util. | Ms2ger | 2014-02-14 | 1 | -1/+2 |
| | |||||
* | Use DOMString more consistently. | Ms2ger | 2014-02-13 | 1 | -1/+1 |
| | |||||
* | compositor can get mouse point from window event | HyunJune Kim | 2014-02-10 | 1 | -0/+1 |
| | |||||
* | Upgrade to latest Rust. | Jack Moffitt | 2014-01-12 | 1 | -6/+6 |
| | |||||
* | Remove type_id arguments from Event::new and UIEvent::new. | Ms2ger | 2013-11-14 | 1 | -4/+4 |
| | |||||
* | Stop passing DOMStrings via borrowed pointer. (#1201) | Tetsuharu OHZEKI | 2013-11-14 | 1 | -3/+3 |
| |