aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/mouseevent.rs
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-182/+0
|
* Call the generated rather than the hand-written traits (fixes #2936).Ms2ger2014-07-271-30/+3
|
* Introduce abstractions for global scopes.Ms2ger2014-07-151-3/+4
| | | | Part of #2811.
* Rename variables that refer to global objects.Ms2ger2014-07-151-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.Ms2ger2014-06-131-4/+0
|
* Use interior mutability for MouseEvent.Ms2ger2014-06-111-48/+47
|
* Rename BindingDeclarations to Bindings.Ms2ger2014-06-021-1/+1
|
* Remove not-yet-implemented APIs, and update MouseEvent to specification.Ms2ger2014-06-021-21/+11
|
* Use Cell/RefCell for interior mutability of MouseEvent.Tetsuharu OHZEKI2014-05-301-3/+4
|
* Update Rust.Ms2ger2014-05-221-1/+1
|
* Add MouseEvent::new_uninitialized().Tetsuharu OHZEKI2014-05-101-8/+32
|
* Make dictionaries contain Root<T> values instead of JS<T>, ensuring that ↵Josh Matthews2014-05-031-4/+2
| | | | they will not be collected while the dictionary is alive.
* Address review comments.Josh Matthews2014-05-031-3/+3
|
* Remove all root collections.Josh Matthews2014-05-031-5/+4
|
* s/Unrooted/Temporary/gJosh Matthews2014-05-031-7/+7
|
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-36/+73
|
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-7/+7
|
* Turn on GC all the time. Fix rooting errors during parsing and storing ↵Josh Matthews2014-05-031-8/+11
| | | | timers. Fix borrow errors during tracing.
* Remove the 'pub use self::BindingDeclarations::*;' export.Tetsuharu OHZEKI2014-05-011-1/+1
|
* This batch of changes upgrades Servo to work with the Rust upgrade as ofLars Bergstrom2014-04-271-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 Matthews2014-04-221-2/+1
| | | | and outerizing of inner windows.
* Warning police.Josh Matthews2014-03-181-3/+2
|
* Pass &JS<Window> to reflect_dom_object.Ms2ger2014-03-041-1/+1
|
* Move Error, Fallible, ErrorResult out of utils.rs (fixes #1749)Saurabh Anand2014-02-281-1/+1
|
* Implement JSManaged for DOM objects.Josh Matthews2014-02-241-24/+33
|
* Move DOMString into servo_util.Ms2ger2014-02-141-1/+2
|
* Stop passing DOMStrings via borrowed pointer. (#1201)Tetsuharu OHZEKI2013-11-141-3/+3
|
* Remove Reflectable::GetParentObject.Ms2ger2013-11-061-6/+0
|
* Remove Reflectable::wrap_object_shared.Ms2ger2013-11-061-5/+1
|
* Add Event and EventTarget hierarchy via gross AbstractFoo mechanism.Josh Matthews2013-11-051-28/+33
|
* Remove unused init_wrapper functions.Ms2ger2013-10-231-4/+0
|
* Eagerly reflect {,UI,Mouse}EventKeegan McAllister2013-10-221-13/+14
|
* Merge BindingObject and Reflectable.Ms2ger2013-10-181-3/+1
|
* Remove unused DerivedWrapper implementations.Ms2ger2013-10-181-8/+2
|
* Remove DerivedWrapper::wrap_shared, as it's unused.Ms2ger2013-10-181-13/+0
|
* Remove unused aTriedToWrap argument.Ms2ger2013-10-171-2/+1
|
* Introduce mutable/immutable variants of reflector() with named lifetimes, ↵Bobby Holley2013-10-101-2/+6
| | | | and kill unsafe casts.
* Rename get_wrappercache() to reflector(). v1Bobby Holley2013-10-091-2/+2
| | | | I also updated some variable names in the codegen.
* Rename WrapperCache to Reflector.Bobby Holley2013-10-091-2/+2
| | | | | I think the abstraction from the raw JSObject is still probably worthwhile for now.
* Rename CacheableWrapper to Reflectable.Bobby Holley2013-10-091-3/+3
|
* bindings: Return errors in Result rather than setting an out parameterKeegan McAllister2013-09-181-9/+8
| | | | Fixes #909.
* Update RustBrian Anderson2013-08-291-0/+1
|
* Generate bindings for Window.Josh Matthews2013-07-301-1/+1
|
* Generate HTMLDocument bindings. Introduce invariant into generated bindings ↵Josh Matthews2013-07-301-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 IframesTim Kuehn2013-07-291-8/+2
|
* Generate DOM bindings for UIEvent and MouseEvent.Josh Matthews2013-07-101-0/+184