Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix up script and layout. | Bobby Holley | 2017-05-02 | 1 | -1/+1 |
| | |||||
* | Bug 1325878: Pass the MediaList down to Servo, making <style media> work. ↵ | Emilio Cobos Álvarez | 2017-04-12 | 1 | -10/+8 |
| | | | | | | | r=xidorn MozReview-Commit-ID: BUCSQJs2CNI Signed-off-by: Emilio Cobos Álvarez <emilio@crisal.io> | ||||
* | Pass CSS loader to Servo for insertRule. | Xidorn Quan | 2017-04-03 | 1 | -1/+4 |
| | |||||
* | Fix another deadlock | Simon Sapin | 2017-03-19 | 1 | -3/+6 |
| | |||||
* | Wrap most CSS rules in Locked<_> instead of RwLock<_> | Simon Sapin | 2017-03-19 | 1 | -8/+7 |
| | |||||
* | Replace RwLock<CssRules> with Locked<CssRules> | Simon Sapin | 2017-03-19 | 1 | -5/+11 |
| | |||||
* | Make #[dom_struct] a proc_macro attribute | Anthony Ramine | 2017-02-24 | 1 | -0/+1 |
| | |||||
* | Remove HeapGCValue | Anthony Ramine | 2016-12-12 | 1 | -6/+6 |
| | | | | | | It could be used to have mutable JSVal fields without GC barriers. With the removal of that trait, MutHeap and MutNullableHeap can respectively be replaced by MutJS and MutNullableJS. | ||||
* | Rename `Reflectable` to `DomObject`. | Corey Farwell | 2016-12-08 | 1 | -1/+1 |
| | | | | Fixes https://github.com/servo/servo/issues/8473. | ||||
* | Mark JSTraceable and its method as unsafe | Anthony Ramine | 2016-12-06 | 1 | -2/+4 |
| | |||||
* | Update to Rust 1.15.0-nightly (1c448574b 2016-11-28) | Anthony Ramine | 2016-11-29 | 1 | -1/+0 |
| | |||||
* | Move Arc<RwLock<_>> out from CssRules tuple | Xidorn Quan | 2016-11-29 | 1 | -5/+5 |
| | |||||
* | Use stylesheet’s base URL and ns prefixes in CSSOM insert/appendRule. | Simon Sapin | 2016-11-28 | 1 | -2/+2 |
| | |||||
* | Make CSSRule always keep a pointer to its parent stylesheet | Simon Sapin | 2016-11-28 | 1 | -12/+10 |
| | | | | even when the parentStylesheet IDL attribute returns null. | ||||
* | Move "remove a CSS rule" algorithm to style | Xidorn Quan | 2016-11-24 | 1 | -25/+1 |
| | |||||
* | Move "insert a CSS rule" algorithm to style | Xidorn Quan | 2016-11-24 | 1 | -62/+14 |
| | | | | | | This also changes the algorithm to match w3c/csswg-drafts#754 instead of the current cssom draft, because that makes the code simpler and matches implementation of other browsers. | ||||
* | Add CSSKeyframesRule.{findRule, deleteRule, appendRule} | Manish Goregaokar | 2016-11-23 | 1 | -25/+60 |
| | |||||
* | Add CSSGroupingRule.{cssRules, insertRule(), deleteRule()} | Manish Goregaokar | 2016-11-23 | 1 | -0/+1 |
| | |||||
* | Transitively deparent on removal | Manish Goregaokar | 2016-11-23 | 1 | -2/+9 |
| | | | | Chrome and Firefox do this already, probably a spec oversight | ||||
* | Make parent stylesheet optional for CSSRules | Manish Goregaokar | 2016-11-23 | 1 | -7/+12 |
| | |||||
* | Add support for keyframe-backed CSSRules, CSSKeyframesRule.cssRules and ↵ | Manish Goregaokar | 2016-11-23 | 1 | -13/+54 |
| | | | | CSSKeyframeRule | ||||
* | Handle parser state in CSSOM insert_rule | Manish Goregaokar | 2016-11-23 | 1 | -11/+33 |
| | |||||
* | Add insertRule() and deleteRule() on CSSStyleSheet | Manish Goregaokar | 2016-11-23 | 1 | -5/+81 |
| | |||||
* | Allow mutation of CssRules | Manish Goregaokar | 2016-11-15 | 1 | -2/+2 |
| | |||||
* | Support basic immutable CSSOM | Manish Goregaokar | 2016-11-15 | 1 | -0/+67 |