| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove XBL as a separate cascading level in Stylo. | Xidorn Quan | 2017-10-23 | 1 | -3/+0 |
* | Add Servo_StyleSet_GetComputedValuesByAddingAnimation FFI. | Boris Chiou | 2017-10-19 | 1 | -0/+19 |
* | Replace all uses of the `heapsize` crate with `malloc_size_of`. | Nicholas Nethercote | 2017-10-18 | 1 | -8/+3 |
* | Remove text-shadow handling from HasAuthorSpecifiedRules | Xidorn Quan | 2017-10-12 | 1 | -29/+4 |
* | Support pseudo-element properly in HasAuthorSpecifiedRules. | Xidorn Quan | 2017-10-11 | 1 | -7/+16 |
* | stylo: use FnvHashMap everywhere, remove default HashMap construction methods | Manish Goregaokar | 2017-10-03 | 1 | -2/+2 |
* | style: Add a TLS-based style struct caching mechanism. | Emilio Cobos Álvarez | 2017-09-14 | 1 | -1/+1 |
* | Make MallocSizeOf::malloc_{,enclosing_}size_of unsafe. | Nicholas Nethercote | 2017-09-13 | 1 | -2/+2 |
* | Overhaul MallocSizeOf and related things. | Nicholas Nethercote | 2017-09-12 | 1 | -6/+15 |
* | Use SmallBitVec for important flags in PDB | Matt Brubeck | 2017-09-11 | 1 | -6/+5 |
* | Measure the stylist during memory reporting. | Nicholas Nethercote | 2017-09-05 | 1 | -1/+1 |
* | Auto merge of #18334 - Manishearth:hashglobe, r=emilio,Gankro | bors-servo | 2017-09-01 | 1 | -1/+1 |
|\ |
|
| * | stylo: Replace all hashtable collections with ones from style::hash | Manish Goregaokar | 2017-08-31 | 1 | -1/+1 |
* | | Auto merge of #18337 - kuoe0:make-the-order-of-rules-in-DevTools-be-the-speci... | bors-servo | 2017-09-01 | 1 | -15/+22 |
|\ \
| |/
|/| |
|
| * | Bug 1391198 - Make the order of rules in DevTools be the specificity order. | KuoE0 | 2017-09-01 | 1 | -15/+22 |
* | | Measure memory usage of Stylo's Rule Tree. | Nicholas Nethercote | 2017-08-30 | 1 | -1/+15 |
|/ |
|
* | order derivable traits lists | Clément DAVID | 2017-08-23 | 1 | -2/+2 |
* | Make emtpy rule can be inserted into rule tree | KuoE0 | 2017-08-16 | 1 | -1/+4 |
* | Include logical properties in has_author_specified_rules | Manish Goregaokar | 2017-08-09 | 1 | -0/+22 |
* | Remove testing feature from style crate | Manish Goregaokar | 2017-08-07 | 1 | -5/+4 |
* | Make replace_rules_internal return true only if important rules changed. | Hiroyuki Ikezoe | 2017-08-03 | 1 | -1/+5 |
* | Replace all uses of the style::stylearc alias with servo_arc. | Michael Partheil | 2017-07-19 | 1 | -1/+1 |
* | stylo: Make Servo Arc types use ptr to T instead of ptr to ArcInner<T> | Manish Goregaokar | 2017-07-17 | 1 | -5/+5 |
* | style: Make RuleTree::root return a reference instead of a strong pointer. | Emilio Cobos Álvarez | 2017-07-12 | 1 | -12/+14 |
* | style: Undo the optimization for grabbing animation rules from the style data. | Emilio Cobos Álvarez | 2017-07-12 | 1 | -27/+1 |
* | Use GC machinery rather than recursion for post-rule-tree-teardown node dropp... | Bobby Holley | 2017-07-04 | 1 | -6/+34 |
* | Allow StrongRuleNode drops after RuleTree destruction. | Bobby Holley | 2017-06-30 | 1 | -6/+34 |
* | Use a different sentinel value to lock the free list. | Bobby Holley | 2017-06-30 | 1 | -3/+7 |
* | Hook into the Gecko leak checking machinery. | Bobby Holley | 2017-06-30 | 1 | -0/+50 |
* | Stop GCing before dropping the root rule node. | Bobby Holley | 2017-06-30 | 1 | -4/+2 |
* | Move match and cascade temporaries to CurrentElementInfo | J. Ryan Stinnett | 2017-06-22 | 1 | -1/+1 |
* | style: Don't use SmallVec::into_iter to move into another vector. | Emilio Cobos Álvarez | 2017-06-21 | 1 | -7/+10 |
* | stylo: Fix has_author_specified_rules() for rules in XBL stylesheets (bug 137... | Ting-Yu Lin | 2017-06-20 | 1 | -2/+2 |
* | Remove Option wrapper from RuleNode's StyleSource to save one word, add | Brian Lewis | 2017-06-19 | 1 | -26/+39 |
* | Assert against permanently-leaked rule nodes. | Bobby Holley | 2017-06-16 | 1 | -0/+5 |
* | Reuse the prev_sibling slot for free_count to save a word. | Bobby Holley | 2017-06-16 | 1 | -20/+45 |
* | Actually increment the counter when adding rule nodes to the free list. | Bobby Holley | 2017-06-16 | 1 | -0/+5 |
* | style: Less refcount churn while inserting in the rule tree. | Emilio Cobos Álvarez | 2017-06-13 | 1 | -30/+40 |
* | Hoist ApplicableDeclaration{Block,List} into a separate file. | Bobby Holley | 2017-06-12 | 1 | -2/+2 |
* | Use even fewer bits for source order and shrink ApplicableDeclarationsBlock b... | Bobby Holley | 2017-06-12 | 1 | -1/+10 |
* | Auto merge of #17221 - aethanyc:support-xbl-stylesheet, r=heycam | bors-servo | 2017-06-08 | 1 | -1/+4 |
|\ |
|
| * | stylo: Get rules from Gecko XBL stylesheets in cascading (Bug 1290276) | Ting-Yu Lin | 2017-06-08 | 1 | -1/+4 |
* | | Merge CSSColor into Color. | Xidorn Quan | 2017-06-08 | 1 | -2/+1 |
|/ |
|
* | Use NonZeroPtrMut for {Strong,Weak}RuleNode. | Bobby Holley | 2017-06-06 | 1 | -35/+33 |
* | style: Allow StyleSource to be compared. | Emilio Cobos Álvarez | 2017-05-29 | 1 | -0/+6 |
* | Fix calculation of base styles to drop animation rules | Brian Birtles | 2017-05-26 | 1 | -1/+1 |
* | Match and cascade visited styles | J. Ryan Stinnett | 2017-05-24 | 1 | -0/+15 |
* | Rollup merge of #17014 - hiikezoe:animation-rules-in-norma-restyle, r=emilio,... | Manish Goregaokar | 2017-05-24 | 1 | -1/+51 |
|\ |
|
| * | Use animation values that have been processed during animation-only restyle f... | Hiroyuki Ikezoe | 2017-05-24 | 1 | -1/+27 |
| * | Use SMIL override value that has been processed during animation-only restyle... | Hiroyuki Ikezoe | 2017-05-24 | 1 | -0/+24 |