aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmlimageelement.rs
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-233/+0
|
* Fix HTMLImageElement setters.Ms2ger2014-09-051-2/+2
| | | | | | | These would crash because the functions they call assert that they receive lower-case names. Fixing the crash allows reflection-embedded.html to finish successfully.
* Split up macro invocationManish Goregaokar2014-08-201-9/+34
|
* Use getter macros in HTMLImageElementManish Goregaokar2014-08-191-64/+8
|
* Pass an Atom to before_remove_attr and after_set_attr.Ms2ger2014-08-161-6/+10
|
* Upgrade Rust.Jack Moffitt2014-08-021-3/+3
|
* Call the generated rather than the hand-written traits (fixes #2936).Ms2ger2014-07-271-27/+1
|
* Used rust-url directly instead of servo_util::urlSimon Sapin2014-07-211-9/+10
| | | | The latter now only calls the former.
* Remove generate_cacheable_wrapper_htmlelement!Tetsuharu OHZEKI2014-06-281-0/+7
|
* Upgrade to latest Rust.Manish Goregaokar2014-06-271-2/+2
|
* auto merge of #2616 : Ms2ger/servo/attrvalue, r=jdmbors-servo2014-06-131-2/+10
|\ | | | | | | Obsoletes #2073.
| * Implement parsed 'unsigned long' attributes.Ms2ger2014-06-131-2/+10
| | | | | | | | This commit is partially based on earlier work by Bruno Abinader in #2073.
* | Use internal mutability for HTMLImageElement.Ms2ger2014-06-111-16/+14
|/
* Remove needless '&self mut' from VirtualMethods trait.Tetsuharu OHZEKI2014-06-071-9/+11
|
* Upgrade Rust.Jack Moffitt2014-06-051-6/+6
|
* auto merge of #2552 : saneyuki/servo/mut, r=jdmbors-servo2014-06-021-36/+36
|\ | | | | | | related #2514
| * Remove needless '&mut self' from element.rs.Tetsuharu OHZEKI2014-06-031-36/+36
| |
* | Rename BindingDeclarations to Bindings.Ms2ger2014-06-021-1/+1
|/
* Remove not-yet-implemented members from IDL and Rust code.Ms2ger2014-06-011-26/+0
| | | | | | | | These stub implementations bring no value, and significantly increased maintenance costs. This commit also synchronizes the IDL with the HTML specification and makes the URLs consistent.
* Update Rust.Ms2ger2014-05-221-1/+1
|
* Use == instead of match for tests against a single enum valueMartin Robinson2014-05-081-4/+1
| | | | | | | The performance of using == should now equal that of match, so many identity methods can be simplified to a single line. Fixes #1596.
* Replace all ~"" with "".to_owned().Ms2ger2014-05-031-1/+1
|
* Address review comments.Josh Matthews2014-05-031-6/+6
|
* Address review comments.Josh Matthews2014-05-031-2/+2
|
* Remove all root collections.Josh Matthews2014-05-031-6/+4
|
* s/Unrooted/Temporary/gJosh Matthews2014-05-031-2/+2
|
* Move all methods on T to JSRef<T> or JS<T> as appropriate.Josh Matthews2014-05-031-20/+33
|
* Remove abstract_self.Josh Matthews2014-05-031-72/+72
|
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-31/+63
|
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-36/+38
|
* Turn on GC all the time. Fix rooting errors during parsing and storing ↵Josh Matthews2014-05-031-51/+51
| | | | timers. Fix borrow errors during tracing.
* Remove the 'pub use self::BindingDeclarations::*;' export.Tetsuharu OHZEKI2014-05-011-3/+2
|
* This batch of changes upgrades Servo to work with the Rust upgrade as ofLars Bergstrom2014-04-271-1/+1
| | | | | | 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.
* Add NodeHelpers::get_bounding_content_box().Tetsuharu OHZEKI2014-04-241-13/+3
|
* Add transparent Traceable and Untraceable types to aid proper rooting ↵Josh Matthews2014-04-171-19/+7
| | | | practices, and replace ad-hoc Untraceable structs with empty Encodable implementations.
* auto merge of #2054 : sankha93/servo/imageattr, r=jdmbors-servo2014-04-151-41/+59
|\
| * HTMLImageElement attribute getters and settersSankha Narayan Guria2014-04-081-41/+59
| |
* | Add support for trait-based virtual methods on Nodes, and use it for ↵Josh Matthews2014-04-101-7/+21
|/ | | | before_remove_attr and after_set_attr.
* Introduce a set_uint_attribute method.Ms2ger2014-04-061-4/+4
|
* Upgrade rust.Ms2ger2014-04-041-3/+3
|
* Get rid of match statements in layout queries in script_tasklpy2014-04-021-10/+4
|
* Move attributes-related functions onto JS<Element>.Ms2ger2014-03-201-22/+26
|
* Warning police.Josh Matthews2014-03-181-6/+3
|
* Rust upgradesLars Bergstrom2014-03-181-1/+1
|
* auto merge of #1889 : pcwalton/servo/fix-borrow-flags-race, r=jdmbors-servo2014-03-121-1/+1
|\ | | | | | | r? @jdm
| * script: Fix a borrow flags race in layout on `.owner_doc()`.Patrick Walton2014-03-111-1/+1
| |
* | Don't use the Untraceable fields outside the module they're defined in.Ms2ger2014-03-121-1/+5
|/ | | | This pattern will become illegal with the next Rust upgrade.
* Implement document_from_node and window_from_node helpers.(fixes #1761)lpy2014-03-011-3/+3
|
* De-@mut the script crate.Josh Matthews2014-02-281-2/+2
|
* Move Error, Fallible, ErrorResult out of utils.rs (fixes #1749)Saurabh Anand2014-02-281-1/+1
|