Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Basic element.focus and blur methods | Matt Brubeck | 2015-04-04 | 1 | -3/+29 | |
|/ | | | | Fixes #5462. | |||||
* | Remove some unnecessary uses of `as_slice` | Corey Farwell | 2015-03-29 | 1 | -4/+4 | |
| | | | | | | | | | | | For the majority of these cases, `as_slice` can be removed due to `Deref`. In particular, `Deref` for: * `String` -> `str` * `Atom` -> `str` The latter of those two requires, a bump of the locked `string-cache` library | |||||
* | Fix various build warnings. | Ms2ger | 2015-03-20 | 1 | -1/+0 | |
| | ||||||
* | Upgrade rustc to d3c49d2140fc65e8bb7d7cf25bfe74dda6ce5ecf/rustc-1.0.0-dev. | Ms2ger | 2015-03-18 | 1 | -2/+6 | |
| | ||||||
* | Use new `if let` syntax wherever possible. Fixes #4153. | Zack Slayton | 2015-03-10 | 1 | -6/+6 | |
| | ||||||
* | Move everything unrelated to the frame tree out of Page and into Document or ↵ | Josh Matthews | 2015-03-03 | 1 | -0/+1 | |
| | | | | Window. Reduce the API surface of Page to a bare minimum to allow for easier future removal. | |||||
* | Fix some warnings in script. | Ms2ger | 2015-02-12 | 1 | -1/+1 | |
| | ||||||
* | Upgrade to rustc ba2f13ef0 2015-02-04 | Simon Sapin | 2015-02-11 | 1 | -1/+1 | |
| | ||||||
* | Import the util crate as util rather than servo_util. | Ms2ger | 2015-01-29 | 1 | -1/+1 | |
| | | | | | | | | This used to conflict with the util crate from the standard library, which has long since been removed. The import in layout has not been changed because of a conflict with the util mod there. | |||||
* | Don't shadow lifetimes in script. | Ms2ger | 2015-01-28 | 1 | -1/+1 | |
| | ||||||
* | Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev. | Josh Matthews | 2015-01-28 | 1 | -9/+10 | |
| | ||||||
* | Move to to_owned rather than into_string. | Ms2ger | 2015-01-20 | 1 | -3/+4 | |
| | | | | into_string has been removed from Rust. | |||||
* | Update rustc to revision 2cfb5acb5a2751c759627377e602bac4f88f2d19. | Ms2ger | 2015-01-08 | 1 | -2/+2 | |
| | ||||||
* | auto merge of #4495 : MeghaGupta/servo/typeid, r=Ms2ger | bors-servo | 2015-01-04 | 1 | -5/+76 | |
|\ | ||||||
| * | Fix inheritance enums for htmlmediaelement and htmltablecellelement | Megha Gupta | 2015-01-02 | 1 | -5/+4 | |
| | | ||||||
| * | Add HTMLElementTypeId enum (fixes #3625) | Megha Gupta | 2015-01-02 | 1 | -5/+77 | |
| | | ||||||
* | | Replace Root::deref() calls by Root::r() calls where possible. | Ms2ger | 2015-01-01 | 1 | -7/+7 | |
| | | | | | | | | This changes those calls that were already sound. | |||||
* | | Replace the remaining to_string calls by into_string calls. | Ms2ger | 2014-12-31 | 1 | -1/+1 | |
|/ | ||||||
* | Added readonly flag for CSSStyleDeclaration | ProgramFOX | 2014-12-28 | 1 | -2/+2 | |
| | ||||||
* | auto merge of #4173 : Manishearth/servo/a-more-dom-struct, r=kmcallister | bors-servo | 2014-12-27 | 1 | -6/+1 | |
|\ | | | | | | | | | | | Now `#[dom_struct]` also generates Reflectable impls, and there's another lint to ensure that a DOM struct only contains one bare DOM field (as the first field) or a Reflector. A lot of this was generated by sed -- each autogenerated change has its own commit for easy review; these will be squashed later. | |||||
| * | Remove manual impls of Reflectors (autogen) | Manish Goregaokar | 2014-12-27 | 1 | -6/+1 | |
| | | | | | | | | | | | | | | | | | | Obtained via: `find . -maxdepth 1 -type f -print0 | xargs -0 sed -z -i "s/\\nimpl Reflectable for[^{]*{[^}]*}[^}]*}\\n//"` `find . -maxdepth 1 -type f -print0 |xargs -0 grep -lZ dom_struct | xargs -0 grep -LZ "reflector()\\|Reflector::new" |xargs -0 sed -z -i "s/use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object};/use dom::bindings::utils::reflect_dom_object;/"` followed by semi-automated removal of leftover imports | |||||
* | | script: to_string() -> into_string() | Manish Goregaokar | 2014-12-27 | 1 | -1/+1 | |
|/ | ||||||
* | Implement HTMLElement.dataset (fixes #2974). | Bruno de Oliveira Abinader | 2014-12-23 | 1 | -1/+56 | |
| | ||||||
* | Revert PR #4038 for causing WPT failures. | Ms2ger | 2014-12-23 | 1 | -56/+1 | |
| | ||||||
* | Implement HTMLElement.dataset | Bruno de Oliveira Abinader | 2014-12-19 | 1 | -1/+56 | |
| | | | | Make DOMStringMap use related Element's custom attributes values. | |||||
* | Handle getting/setting onload for any element. | Eduard Burtescu | 2014-12-19 | 1 | -1/+5 | |
| | ||||||
* | Merge CSS2Properties and CSSStyleDeclaration. | Josh Matthews | 2014-12-18 | 1 | -4/+2 | |
| | ||||||
* | Address review comments. | Josh Matthews | 2014-12-18 | 1 | -6/+4 | |
| | ||||||
* | Implement something like CSS value serialization. Fetch actual inline style ↵ | Josh Matthews | 2014-12-18 | 1 | -2/+2 | |
| | | | | declarations from owning elements. | |||||
* | Add a style property to HTMLElement. | Josh Matthews | 2014-12-18 | 1 | -4/+20 | |
| | ||||||
* | Update rustc to revision 3dcd2157403163789aaf21a9ab3c4d30a7c6494d. | Ms2ger | 2014-12-17 | 1 | -6/+6 | |
| | ||||||
* | Add oninput/onchange so tests work | Manish Goregaokar | 2014-12-05 | 1 | -1/+1 | |
| | ||||||
* | Address review comments | Manish Goregaokar | 2014-12-05 | 1 | -0/+1 | |
| | ||||||
* | Hook up synthetic click activation to script_task and <>.click() | Manish Goregaokar | 2014-12-05 | 1 | -2/+14 | |
| | ||||||
* | auto merge of #4130 : saneyuki/servo/cast, r=Manishearth | bors-servo | 2014-11-28 | 1 | -5/+0 | |
|\ | | | | | | | | | | | Fix #4124 This also introduce `BarCast::from_actual()` which is used for up-cast for dom's actual data types (non JS pointer values). | |||||
| * | Remove HTMLElement.element(). | Tetsuharu OHZEKI | 2014-11-28 | 1 | -5/+0 | |
| | | ||||||
* | | Implemented hidden, removed corresponding passed tests | aakashjain | 2014-11-28 | 1 | -0/+4 | |
|/ | ||||||
* | Implement HTMLElement#lang. | Ms2ger | 2014-11-06 | 1 | -0/+3 | |
| | ||||||
* | Implement HTMLElement.title. | Ms2ger | 2014-11-05 | 1 | -0/+5 | |
| | ||||||
* | auto merge of #3776 : saneyuki/servo/macro, r=jdm | bors-servo | 2014-10-22 | 1 | -9/+1 | |
|\ | | | | | | | | | | | Fix #3755 This doesn't convert some specialized event handlers (e.g. `HTMLBodyElement`'s ones, `HTMLElement.GetOnload()`). | |||||
| * | Macroize event handler getters and setters. | Tetsuharu OHZEKI | 2014-10-23 | 1 | -9/+1 | |
| | | ||||||
* | | Usage of JSRef<Attr> in before_remove_attr & after_set_attr | Bruno de Oliveira Abinader | 2014-10-22 | 1 | -7/+9 | |
|/ | | | | | JSRef<Attr> does not require allocating a DOMString for value, which are unused in most cases. It also provides more access to Attr data. | |||||
* | Use #[dom_struct] everywhere | Manish Goregaokar | 2014-10-16 | 1 | -3/+1 | |
| | ||||||
* | Privatize EventTarget and EventListenerEntry | Tim Taubert | 2014-10-13 | 1 | -1/+1 | |
| | ||||||
* | Privatize InheritTypes | Tim Taubert | 2014-10-13 | 1 | -1/+7 | |
| | ||||||
* | Remove unnecessary `deref()`s (fixes #3586) | Tim Taubert | 2014-10-09 | 1 | -2/+2 | |
| | ||||||
* | Take the prefix from createElementNS into account for HTML elements | Gilles Leblanc | 2014-10-06 | 1 | -4/+4 | |
| | | | | Fixes #3139 | |||||
* | Use string-cache's Namespace type | Keegan McAllister | 2014-09-29 | 1 | -2/+1 | |
| | ||||||
* | Eliminate servo_util::atom | Keegan McAllister | 2014-09-29 | 1 | -1/+1 | |
| | | | | We only needed this for Encodable, and now we use JSTraceable instead. | |||||
* | Upgrade to rustc d2b30f7d3 2014-09-23 | Simon Sapin | 2014-09-29 | 1 | -2/+2 | |
| |