aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/uievent.rs
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-95/+0
|
* Call the generated rather than the hand-written traits (fixes #2936).Ms2ger2014-07-271-12/+3
|
* Remove some unnecessary uses of the serialize module.Ms2ger2014-07-241-1/+0
|
* Introduce abstractions for global scopes.Ms2ger2014-07-151-3/+4
| | | | Part of #2811.
* Rename variables that refer to global objects.Ms2ger2014-07-151-2/+2
| | | | | | | | 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.Ms2ger2014-06-281-2/+2
| | | | | I have not reviewed if this is the complete set of members that can be made private.
* Use Traceable for primitive types and DOMStringManish Goregaokar2014-06-161-3/+3
|
* Remove Reflectable::mut_reflector.Ms2ger2014-06-131-4/+0
|
* Use internal mutability for UIEvent.Ms2ger2014-06-111-13/+12
|
* Use internal mutability for Event.Ms2ger2014-06-111-1/+1
|
* Rename BindingDeclarations to Bindings.Ms2ger2014-06-021-1/+1
|
* Remove not-yet-implemented APIs, and update MouseEvent to specification.Ms2ger2014-06-021-60/+0
|
* Make UIEvent.view be in a Cell.Tetsuharu OHZEKI2014-06-021-3/+4
|
* Remove needless '&mut self' from UIEventMethods.Tetsuharu OHZEKI2014-05-311-2/+2
|
* Use Cell/RefCell for interior mutability of UIEvent.Tetsuharu OHZEKI2014-05-301-1/+1
|
* Update Rust.Ms2ger2014-05-221-1/+1
|
* Add UIEvent::new_uninitialized().Tetsuharu OHZEKI2014-05-101-5/+16
|
* Address review comments.Josh Matthews2014-05-031-1/+0
|
* Make dictionaries contain Root<T> values instead of JS<T>, ensuring that ↵Josh Matthews2014-05-031-2/+1
| | | | 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-4/+3
|
* s/Unrooted/Temporary/gJosh Matthews2014-05-031-9/+9
|
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-23/+50
|
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-8/+8
|
* Turn on GC all the time. Fix rooting errors during parsing and storing ↵Josh Matthews2014-05-031-6/+8
| | | | 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-3/+3
| | | | | | 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-4/+5
| | | | and outerizing of inner windows.
* 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-22/+30
|
* Move DOMString into servo_util.Ms2ger2014-02-141-1/+2
|
* script: Eliminate the phantom type in favor of just whitelisting methodsPatrick Walton2013-12-171-2/+2
| | | | | | | that layout can safely call. This is simpler. Currently, the set of methods is not safe, but I plan to lock it down more soon.
* Remove type_id arguments from Event::new and UIEvent::new.Ms2ger2013-11-141-3/+3
|
* Stop passing DOMStrings via borrowed pointer. (#1201)Tetsuharu OHZEKI2013-11-141-2/+2
|
* 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-20/+15
|
* Remove unused init_wrapper functions.Ms2ger2013-10-231-4/+0
|
* Eagerly reflect {,UI,Mouse}EventKeegan McAllister2013-10-221-9/+16
|
* 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-12/+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-7/+5
| | | | Fixes #909.
* Update RustBrian Anderson2013-08-291-0/+1
|