Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename Root<T> to DomRoot<T> | Anthony Ramine | 2017-09-26 | 1 | -3/+3 |
| | | | | | | | In a later PR, DomRoot<T> will become a type alias of Root<Dom<T>>, where Root<T> will be able to handle all the things that need to be rooted that have a stable traceable address that doesn't move for the whole lifetime of the root. Stay tuned. | ||||
* | Rename MutNullableJS<T> to MutNullableDom<T> | Anthony Ramine | 2017-09-26 | 1 | -3/+3 |
| | |||||
* | Rename dom::bindings::js to dom::bindings::root | Anthony Ramine | 2017-09-26 | 1 | -1/+1 |
| | |||||
* | Replace all uses of the style::stylearc alias with servo_arc. | Michael Partheil | 2017-07-19 | 1 | -1/+1 |
| | | | | | | The alias is left there temporarilly and will be removed completely in a later commit where also components/style/gecko/generated/structs_{debug|release}.rs are re-generated (they still use the old alias). | ||||
* | Fix up script and layout. | Bobby Holley | 2017-05-02 | 1 | -1/+1 |
| | |||||
* | Replace RwLock<CssRules> with Locked<CssRules> | Simon Sapin | 2017-03-19 | 1 | -4/+3 |
| | |||||
* | Replace more RwLock<MediaList> with shared_lock::Locked<MediaList> | Simon Sapin | 2017-03-19 | 1 | -0/+4 |
| | |||||
* | Introduce a ToCssWithGuard trait | Simon Sapin | 2017-03-19 | 1 | -0/+5 |
| | |||||
* | Make #[dom_struct] a proc_macro attribute | Anthony Ramine | 2017-02-24 | 1 | -0/+1 |
| | |||||
* | Remove and allow some dead code. | Ms2ger | 2016-12-22 | 1 | -11/+1 |
| | |||||
* | Remove HeapGCValue | Anthony Ramine | 2016-12-12 | 1 | -3/+3 |
| | | | | | | 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. | ||||
* | Move Arc<RwLock<_>> out from CssRules tuple | Xidorn Quan | 2016-11-29 | 1 | -3/+6 |
| | |||||
* | Make CSSRule always keep a pointer to its parent stylesheet | Simon Sapin | 2016-11-28 | 1 | -8/+6 |
| | | | | even when the parentStylesheet IDL attribute returns null. | ||||
* | Add CSSKeyframesRule.{findRule, deleteRule, appendRule} | Manish Goregaokar | 2016-11-23 | 1 | -2/+1 |
| | |||||
* | Add CSSGroupingRule.{cssRules, insertRule(), deleteRule()} | Manish Goregaokar | 2016-11-23 | 1 | -4/+44 |
| | |||||
* | Make parent stylesheet optional for CSSRules | Manish Goregaokar | 2016-11-23 | 1 | -2/+2 |
| | |||||
* | Support basic immutable CSSOM | Manish Goregaokar | 2016-11-15 | 1 | -0/+30 |