aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmlobjectelement.rs
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-113/+0
|
* Pass an Atom to before_remove_attr and after_set_attr.Ms2ger2014-08-161-3/+5
|
* Upgrade Rust.Jack Moffitt2014-08-021-2/+2
|
* Call the generated rather than the hand-written traits (fixes #2936).Ms2ger2014-07-271-5/+2
|
* Used rust-url directly instead of servo_util::urlSimon Sapin2014-07-211-6/+4
| | | | The latter now only calls the former.
* Move is_image_data() where it’s used.Simon Sapin2014-07-211-1/+5
|
* Remove generate_cacheable_wrapper_htmlelement!Tetsuharu OHZEKI2014-06-281-0/+7
|
* Upgrade to latest Rust.Manish Goregaokar2014-06-271-2/+2
|
* Remove needless '&self mut' from VirtualMethods trait.Tetsuharu OHZEKI2014-06-071-5/+5
|
* Upgrade Rust.Jack Moffitt2014-06-051-3/+3
|
* Rename BindingDeclarations to Bindings.Ms2ger2014-06-021-1/+1
|
* Remove not-yet-implemented members from IDL and Rust code.Ms2ger2014-06-011-202/+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.
* Remove needless '&mut self' from htmlobjectelement.rs.Tetsuharu OHZEKI2014-05-311-36/+36
|
* 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-14/+14
|
* Address review comments.Josh Matthews2014-05-031-5/+5
|
* Address review comments.Josh Matthews2014-05-031-3/+3
|
* Remove all root collections.Josh Matthews2014-05-031-8/+5
|
* s/Unrooted/Temporary/gJosh Matthews2014-05-031-12/+12
|
* Move all methods on T to JSRef<T> or JS<T> as appropriate.Josh Matthews2014-05-031-3/+2
|
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-42/+87
|
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-18/+19
|
* Turn on GC all the time. Fix rooting errors during parsing and storing ↵Josh Matthews2014-05-031-4/+6
| | | | 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-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.
* Remove all traces of WindowProxy. Implement basic browser context concept ↵Josh Matthews2014-04-221-2/+2
| | | | and outerizing of inner windows.
* Add support for trait-based virtual methods on Nodes, and use it for ↵Josh Matthews2014-04-101-4/+15
| | | | before_remove_attr and after_set_attr.
* Upgrade rust.Ms2ger2014-04-041-1/+1
|
* Move attributes-related functions onto JS<Element>.Ms2ger2014-03-201-14/+22
|
* script: Fix a borrow flags race in layout on `.owner_doc()`.Patrick Walton2014-03-111-1/+1
|
* Move Error, Fallible, ErrorResult out of utils.rs (fixes #1749)Saurabh Anand2014-02-281-1/+1
|
* Add url getter to Page and fix users of Page url with it.(fixes #1762)lpy2014-02-281-1/+1
|
* Implement JSManaged for DOM objects.Josh Matthews2014-02-241-18/+33
|
* Support object element data.Youngmin Yoo2014-02-201-2/+38
|
* Move DOMString into servo_util.Ms2ger2014-02-141-1/+2
|
* Use DOMString more consistently.Ms2ger2014-02-131-2/+2
|
* script: Eliminate the phantom type in favor of just whitelisting methodsPatrick Walton2013-12-171-3/+3
| | | | | | | 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.
* Stop passing DOMStrings via borrowed pointer. (#1201)Tetsuharu OHZEKI2013-11-141-14/+14
|
* Don't pass nullable strings to native DOM methods that want non-nullable ↵Ms2ger2013-11-121-42/+42
| | | | strings. Fixes #1207.
* Make DOMString represent a non-nullable string.Ms2ger2013-11-121-28/+28
|
* Rename HTMLElement::new to HTMLElement::new_inherited.Ms2ger2013-11-021-1/+1
|
* Introduce HTMLObjectElement::new.Ms2ger2013-11-011-1/+16
|
* Wrap ValidityState eagerly.Ms2ger2013-10-231-1/+2
|
* Rename the element field of the DOM Node hierarchyLuis de Bethencourt2013-09-191-1/+1
| | | | | | Renamed htmlelement, and element Fixes #924
* bindings: Return errors in Result rather than setting an out parameterKeegan McAllister2013-09-181-18/+34
| | | | Fixes #909.
* Make DOMString an alias for Option<~str>Keegan McAllister2013-09-181-15/+15
| | | | Fixes #898.
* Generate bindings for HTMLObjectElement.Josh Matthews2013-08-281-0/+163