aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/style/node.rs
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-34/+0
|
* Fix case sensitivity of local name selectors.Simon Sapin2014-08-161-0/+1
|
* Implement support for :enabled CSS selectorBruno de Oliveira Abinader2014-08-051-0/+1
|
* Implement support for :disabled CSS selectorBruno de Oliveira Abinader2014-08-051-0/+1
|
* Use atom to match id selector.Tetsuharu OHZEKI2014-07-301-0/+1
|
* Port element traits to use atoms instead of strings.Glenn Watson2014-07-221-1/+2
|
* Change from TNode/TElement::with_element() to as_element().Tetsuharu OHZEKI2014-03-211-4/+1
|
* This is implement Hover Event. If over element, currently full reflow. after ↵HyunJune Kim2014-02-101-1/+1
| | | | PR, will make partial reflow.
* Do not copy the result of get_link()Simon Sapin2014-01-251-1/+1
|
* Convert to Namespace during CSS parsing rather than selector matching.Simon Sapin2014-01-251-1/+1
|
* Make get_attr() take a &Namespace rather than Option<~str>Simon Sapin2014-01-251-1/+2
|
* Restore perf improvement from #1554Simon Sapin2014-01-251-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 Sapin2014-01-251-0/+1
|
* Change `get_attr()` to `get_attr_val_for_layout()`.Jack Moffitt2014-01-221-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 Moffitt2014-01-121-1/+1
|
* layout: Stop exposing raw `Element` types to layout as well.Patrick Walton2013-12-171-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 genericPatrick Walton2013-12-171-0/+28