aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/cssstylesheet.rs
Commit message (Collapse)AuthorAgeFilesLines
* stylo: Fix StyleSheetInner/Stylesheet mappingEmilio Cobos Álvarez2017-07-021-4/+8
| | | | | | The key of this patch is the split between Stylesheet and StylesheetContents. Gecko will use StylesheetContents, which maps to a ServoStyleSheetInner.
* Fix up script and layout.Bobby Holley2017-05-021-1/+1
|
* Replace RwLock<CssRules> with Locked<CssRules>Simon Sapin2017-03-191-0/+5
|
* Make #[dom_struct] a proc_macro attributeAnthony Ramine2017-02-241-0/+1
|
* Support origins in CSSOM stylesheetsNazım Can Altınova2017-01-201-7/+19
|
* Remove HeapGCValueAnthony Ramine2016-12-121-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 Farwell2016-12-081-1/+1
| | | | Fixes https://github.com/servo/servo/issues/8473.
* Use stylesheet’s base URL and ns prefixes in CSSOM insert/appendRule.Simon Sapin2016-11-281-0/+4
|
* Make CSSRule always keep a pointer to its parent stylesheetSimon Sapin2016-11-281-1/+1
| | | | even when the parentStylesheet IDL attribute returns null.
* Implement StyleSheet.disabled.Cameron McCormack2016-11-251-4/+23
|
* Address review commentsManish Goregaokar2016-11-231-0/+1
|
* Make parent stylesheet optional for CSSRulesManish Goregaokar2016-11-231-1/+1
|
* Add support for keyframe-backed CSSRules, CSSKeyframesRule.cssRules and ↵Manish Goregaokar2016-11-231-2/+3
| | | | CSSKeyframeRule
* Handle parser state in CSSOM insert_ruleManish Goregaokar2016-11-231-1/+1
|
* Add insertRule() and deleteRule() on CSSStyleSheetManish Goregaokar2016-11-231-1/+21
|
* Support basic immutable CSSOMManish Goregaokar2016-11-151-0/+51