Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cargoify servo | Jack Moffitt | 2014-09-08 | 1 | -34/+0 |
| | |||||
* | Fix case sensitivity of local name selectors. | Simon Sapin | 2014-08-16 | 1 | -0/+1 |
| | |||||
* | Implement support for :enabled CSS selector | Bruno de Oliveira Abinader | 2014-08-05 | 1 | -0/+1 |
| | |||||
* | Implement support for :disabled CSS selector | Bruno de Oliveira Abinader | 2014-08-05 | 1 | -0/+1 |
| | |||||
* | Use atom to match id selector. | Tetsuharu OHZEKI | 2014-07-30 | 1 | -0/+1 |
| | |||||
* | Port element traits to use atoms instead of strings. | Glenn Watson | 2014-07-22 | 1 | -1/+2 |
| | |||||
* | Change from TNode/TElement::with_element() to as_element(). | Tetsuharu OHZEKI | 2014-03-21 | 1 | -4/+1 |
| | |||||
* | This is implement Hover Event. If over element, currently full reflow. after ↵ | HyunJune Kim | 2014-02-10 | 1 | -1/+1 |
| | | | | PR, will make partial reflow. | ||||
* | Do not copy the result of get_link() | Simon Sapin | 2014-01-25 | 1 | -1/+1 |
| | |||||
* | Convert to Namespace during CSS parsing rather than selector matching. | Simon Sapin | 2014-01-25 | 1 | -1/+1 |
| | |||||
* | Make get_attr() take a &Namespace rather than Option<~str> | Simon Sapin | 2014-01-25 | 1 | -1/+2 |
| | |||||
* | Restore perf improvement from #1554 | Simon Sapin | 2014-01-25 | 1 | -1/+5 |
| | | | | | Lower-case attribute names when parsing selectors rather than when matching. This avoid one allocation in matching code. | ||||
* | Do not lowercase names for *AttributeNS APIs. (Move lower-casing to callers.) | Simon Sapin | 2014-01-25 | 1 | -0/+1 |
| | |||||
* | Change `get_attr()` to `get_attr_val_for_layout()`. | Jack Moffitt | 2014-01-22 | 1 | -1/+1 |
| | | | | | | | | 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`. | ||||
* | Upgrade to latest Rust. | Jack Moffitt | 2014-01-12 | 1 | -1/+1 |
| | |||||
* | layout: Stop exposing raw `Element` types to layout as well. | Patrick Walton | 2013-12-17 | 1 | -3/+1 |
| | | | | | This should make layout memory-safe as is, though we will need to do more stuff for incremental reflow and parallelism. | ||||
* | script: Make trees less generic | Patrick Walton | 2013-12-17 | 1 | -0/+28 |