Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cargoify servo | Jack Moffitt | 2014-09-08 | 1 | -97/+0 |
| | |||||
* | Upgrade Rust. | Jack Moffitt | 2014-08-02 | 1 | -2/+2 |
| | |||||
* | Call the generated rather than the hand-written traits (fixes #2936). | Ms2ger | 2014-07-27 | 1 | -4/+2 |
| | |||||
* | Use tree_in_doc on Style elem to parse its own CSS, if needed | Bruno de Oliveira Abinader | 2014-07-16 | 1 | -6/+10 |
| | |||||
* | Added 'parent is/was in tree' param to bind_to_tree/unbind_from_tree | Bruno de Oliveira Abinader | 2014-07-16 | 1 | -2/+2 |
| | | | | | | | According to a talk with Ms2ger, both bind_to_tree / unbind_from_tree should be called regardless if the tree is part of a Document. This information is now passed as a parameter to their respective virtual methods. | ||||
* | Remove generate_cacheable_wrapper_htmlelement! | Tetsuharu OHZEKI | 2014-06-28 | 1 | -0/+7 |
| | |||||
* | Upgrade to latest Rust. | Manish Goregaokar | 2014-06-27 | 1 | -2/+2 |
| | |||||
* | HTMLStyleElement only applies CSS in the document | Martin Richard | 2014-06-21 | 1 | -1/+14 |
| | | | | | | | | | | | | | | | HTMLStyleElement will not parse a style element created in Javascript until it is attached to the DOM. I added a reftest for the given cases: * a style element is defined in the HTML code, * a style element is created in Javascript, CSS content is added to the element and the element is later attached to the document, * a style element is created in Javascript, attached to the document and later CSS content is added to the element, * a style element is created in Javascript, CSS content is added to the * element but the element is never attached to the document. | ||||
* | Remove needless '&self mut' from VirtualMethods trait. | Tetsuharu OHZEKI | 2014-06-07 | 1 | -5/+5 |
| | |||||
* | Rename BindingDeclarations to Bindings. | Ms2ger | 2014-06-02 | 1 | -1/+1 |
| | |||||
* | Remove not-yet-implemented members from IDL and Rust code. | Ms2ger | 2014-06-01 | 1 | -42/+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 HTMLStyleElementMethods. | Tetsuharu OHZEKI | 2014-05-31 | 1 | -4/+4 |
| | |||||
* | Update Rust. | Ms2ger | 2014-05-22 | 1 | -1/+1 |
| | |||||
* | Use == instead of match for tests against a single enum value | Martin Robinson | 2014-05-08 | 1 | -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(). | Ms2ger | 2014-05-03 | 1 | -2/+2 |
| | |||||
* | Address review comments. | Josh Matthews | 2014-05-03 | 1 | -5/+5 |
| | |||||
* | Address review comments. | Josh Matthews | 2014-05-03 | 1 | -3/+3 |
| | |||||
* | Remove all root collections. | Josh Matthews | 2014-05-03 | 1 | -3/+2 |
| | |||||
* | s/Unrooted/Temporary/g | Josh Matthews | 2014-05-03 | 1 | -2/+2 |
| | |||||
* | Remove abstract_self. | Josh Matthews | 2014-05-03 | 1 | -1/+1 |
| | |||||
* | Move WebIDL methods to traits implemented by JSRef types. | Josh Matthews | 2014-05-03 | 1 | -11/+22 |
| | |||||
* | Implement safe rooting strategy via Unrooted, Root, JSRef, and JS. | Josh Matthews | 2014-05-03 | 1 | -11/+10 |
| | |||||
* | Turn on GC all the time. Fix rooting errors during parsing and storing ↵ | Josh Matthews | 2014-05-03 | 1 | -4/+6 |
| | | | | timers. Fix borrow errors during tracing. | ||||
* | Remove the 'pub use self::BindingDeclarations::*;' export. | Tetsuharu OHZEKI | 2014-05-01 | 1 | -1/+1 |
| | |||||
* | This batch of changes upgrades Servo to work with the Rust upgrade as of | Lars Bergstrom | 2014-04-27 | 1 | -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 transparent Traceable and Untraceable types to aid proper rooting ↵ | Josh Matthews | 2014-04-17 | 1 | -1/+1 |
| | | | | practices, and replace ad-hoc Untraceable structs with empty Encodable implementations. | ||||
* | Move child_inserted into VirtualMethods. | Matt Brubeck | 2014-04-14 | 1 | -1/+17 |
| | | | | Follow-up from #1984. | ||||
* | Move inline stylesheet parsing out of HTML parser. | Matt Brubeck | 2014-04-14 | 1 | -2/+21 |
| | | | | | | | Instead, use shared code to parse stylesheet content when it is inserted, whether during parsing or dynamically by script. Based on work by sanools in #1350. | ||||
* | 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 | -6/+19 |
| | |||||
* | Move DOMString into servo_util. | Ms2ger | 2014-02-14 | 1 | -1/+2 |
| | |||||
* | Use DOMString more consistently. | Ms2ger | 2014-02-13 | 1 | -2/+2 |
| | |||||
* | script: Eliminate the phantom type in favor of just whitelisting methods | Patrick Walton | 2013-12-17 | 1 | -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. | ||||
* | Stop passing DOMStrings via borrowed pointer. (#1201) | Tetsuharu OHZEKI | 2013-11-14 | 1 | -2/+2 |
| | |||||
* | Don't pass nullable strings to native DOM methods that want non-nullable ↵ | Ms2ger | 2013-11-12 | 1 | -6/+6 |
| | | | | strings. Fixes #1207. | ||||
* | Make DOMString represent a non-nullable string. | Ms2ger | 2013-11-12 | 1 | -4/+4 |
| | |||||
* | Rename HTMLElement::new to HTMLElement::new_inherited. | Ms2ger | 2013-11-02 | 1 | -1/+1 |
| | |||||
* | Introduce HTMLStyleElement::new. | Ms2ger | 2013-10-31 | 1 | -0/+17 |
| | |||||
* | Rename the element field of the DOM Node hierarchy | Luis de Bethencourt | 2013-09-19 | 1 | -1/+1 |
| | | | | | | Renamed htmlelement, and element Fixes #924 | ||||
* | bindings: Return errors in Result rather than setting an out parameter | Keegan McAllister | 2013-09-18 | 1 | -3/+6 |
| | | | | Fixes #909. | ||||
* | Make DOMString an alias for Option<~str> | Keegan McAllister | 2013-09-18 | 1 | -3/+3 |
| | | | | Fixes #898. | ||||
* | Generate bindings for HTMLStyleElement. | saneyuki_s | 2013-08-08 | 1 | -0/+40 |