Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cargoify servo | Jack Moffitt | 2014-09-08 | 1 | -200/+0 |
| | |||||
* | Implemented Attribute's tokens() iterator | Bruno de Oliveira Abinader | 2014-08-25 | 1 | -17/+13 |
| | |||||
* | Fixed AttrValue::from_tokenlist indexes | Bruno de Oliveira Abinader | 2014-08-25 | 1 | -1/+6 |
| | | | | | | The following issues were found: - Single concatenated spaces were indexed as a single token; - Last token, if not followed by an HTML space character, was ignored; | ||||
* | Make AttrValue::as_slice impl from Str | Bruno de Oliveira Abinader | 2014-08-22 | 1 | -1/+4 |
| | |||||
* | Use Attr::value() whenever possible | Bruno de Oliveira Abinader | 2014-08-22 | 1 | -3/+3 |
| | |||||
* | Pass an Atom to before_remove_attr and after_set_attr. | Ms2ger | 2014-08-16 | 1 | -2/+2 |
| | |||||
* | Make Attr::local_name an Atom. | Ms2ger | 2014-08-16 | 1 | -7/+15 |
| | |||||
* | Make Attr::owner immutable. | Ms2ger | 2014-08-06 | 1 | -5/+5 |
| | | | | | Nobody needs to change the element it's associated with, so there's no reason to use a Cell here. | ||||
* | Use atom to match id selector. | Tetsuharu OHZEKI | 2014-07-30 | 1 | -0/+10 |
| | |||||
* | Port `id` attribute to use atom. | Tetsuharu OHZEKI | 2014-07-29 | 1 | -0/+7 |
| | |||||
* | Call the generated rather than the hand-written traits (fixes #2936). | Ms2ger | 2014-07-27 | 1 | -9/+1 |
| | |||||
* | Port attribute name to use atom. | Glenn Watson | 2014-07-24 | 1 | -5/+6 |
| | |||||
* | Introduce abstractions for global scopes. | Ms2ger | 2014-07-15 | 1 | -1/+2 |
| | | | | Part of #2811. | ||||
* | Make some DOM members private. | Ms2ger | 2014-06-28 | 1 | -2/+2 |
| | | | | | I have not reviewed if this is the complete set of members that can be made private. | ||||
* | Upgrade to latest Rust. | Manish Goregaokar | 2014-06-27 | 1 | -1/+1 |
| | |||||
* | Use internal mutability for Attr::value. | Ms2ger | 2014-06-22 | 1 | -16/+26 |
| | |||||
* | auto merge of #2649 : ebalint/servo/2580_JS_T_unrooted_replace, r=jdm | bors-servo | 2014-06-13 | 1 | -1/+1 |
|\ | | | | | | | | | removed .clone() calls modified from_rooted method parameter: T to &T | ||||
| * | Replace uses of JS<T>.unrooted() with JS::from_rooted #2580 | Edit Balint | 2014-06-13 | 1 | -1/+1 |
| | | |||||
* | | Remove Reflectable::mut_reflector. | Ms2ger | 2014-06-13 | 1 | -4/+0 |
|/ | |||||
* | Implement parsed 'unsigned long' attributes. | Ms2ger | 2014-06-13 | 1 | -1/+8 |
| | | | | This commit is partially based on earlier work by Bruno Abinader in #2073. | ||||
* | Implement support for parsed attributes. | Ms2ger | 2014-06-13 | 1 | -9/+43 |
| | | | | This commit is heavily based on earlier work by Bruno Abinader in #2073. | ||||
* | Make Attr::value private. | Ms2ger | 2014-06-08 | 1 | -1/+1 |
| | |||||
* | Remove needless '&self mut' from VirtualMethods trait. | Tetsuharu OHZEKI | 2014-06-07 | 1 | -2/+2 |
| | |||||
* | Upgrade Rust. | Jack Moffitt | 2014-06-05 | 1 | -1/+1 |
| | |||||
* | Rename BindingDeclarations to Bindings. | Ms2ger | 2014-06-02 | 1 | -1/+1 |
| | |||||
* | Use Cell/RefCell for interior mutability of Attr, AttrList, Blob, | Tetsuharu OHZEKI | 2014-05-30 | 1 | -3/+4 |
| | | | | BrowserContext, ClientRect, and ClientRectList. | ||||
* | Update Rust. | Ms2ger | 2014-05-22 | 1 | -1/+1 |
| | |||||
* | Fix up the virtual method unsoundness. | Josh Matthews | 2014-05-03 | 1 | -2/+2 |
| | |||||
* | Remove all root collections. | Josh Matthews | 2014-05-03 | 1 | -3/+2 |
| | |||||
* | s/Unrooted/Temporary/g | Josh Matthews | 2014-05-03 | 1 | -2/+2 |
| | |||||
* | Move WebIDL methods to traits implemented by JSRef types. | Josh Matthews | 2014-05-03 | 1 | -7/+16 |
| | |||||
* | Implement safe rooting strategy via Unrooted, Root, JSRef, and JS. | Josh Matthews | 2014-05-03 | 1 | -7/+9 |
| | |||||
* | Turn on GC all the time. Fix rooting errors during parsing and storing ↵ | Josh Matthews | 2014-05-03 | 1 | -2/+2 |
| | | | | 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 | -7/+7 |
| | | | | | | 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. | ||||
* | Make Attr handles all setting value. | Tetsuharu OHZEKI | 2014-04-22 | 1 | -4/+14 |
| | |||||
* | Make Attr::SetValue to reflect attribute change. | Tetsuharu OHZEKI | 2014-04-22 | 1 | -5/+25 |
| | |||||
* | Make Attr::SetValue uses the internal setter. | Tetsuharu OHZEKI | 2014-04-22 | 1 | -1/+1 |
| | |||||
* | Merge Attr::new_ns and Attr::new. | Ms2ger | 2014-04-08 | 1 | -15/+4 |
| | |||||
* | Pass &JS<Window> to reflect_dom_object. | Ms2ger | 2014-03-04 | 1 | -1/+1 |
| | |||||
* | Pass &JS<Window> to some constructors. | Ms2ger | 2014-03-04 | 1 | -4/+4 |
| | |||||
* | Cleanup Element::set_attribute. | Ms2ger | 2014-02-26 | 1 | -5/+2 |
| | |||||
* | Implement JSManaged for DOM objects. | Josh Matthews | 2014-02-24 | 1 | -4/+6 |
| | |||||
* | Move DOMString into servo_util. | Ms2ger | 2014-02-14 | 1 | -2/+2 |
| | |||||
* | Make Namespace::to_str() return a string. | Simon Sapin | 2014-01-25 | 1 | -1/+4 |
| | |||||
* | Move script::dom::namespace into util, in order to use it from style later. | Simon Sapin | 2014-01-25 | 1 | -1/+1 |
| | |||||
* | Change `get_attr()` to `get_attr_val_for_layout()`. | Jack Moffitt | 2014-01-22 | 1 | -0/+4 |
| | | | | | | | | The old code was used by both layout and script, but was erroneously borrowing for the layout case (which causes parallelism problems). script now uses only `value_ref()` or `get_attribute()`, and layout now has its own unsafe version that dances around the borrows of `@mut Attr`. | ||||
* | Avoid mixing up local name and name when creating attributes. | Ms2ger | 2014-01-04 | 1 | -4/+5 |
| | |||||
* | Remove the hashmap for attributes. | Ms2ger | 2014-01-03 | 1 | -0/+9 |
| | |||||
* | Change Namespace::to_str() to not allocate and return a reference. | Simon Sapin | 2013-12-09 | 1 | -1/+1 |
| |