aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/csskeyframesrule.rs
Commit message (Collapse)AuthorAgeFilesLines
* Implement CSSKeyframesRule.nameNazım Can Altınova2016-12-141-0/+23
|
* 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.
* Silence a warningAnthony Ramine2016-12-011-1/+0
|
* Update to Rust 1.15.0-nightly (1c448574b 2016-11-28)Anthony Ramine2016-11-291-2/+0
|
* Use stylesheet’s base URL and ns prefixes in CSSOM insert/appendRule.Simon Sapin2016-11-281-3/+2
|
* Make CSSRule always keep a pointer to its parent stylesheetSimon Sapin2016-11-281-8/+7
| | | | even when the parentStylesheet IDL attribute returns null.
* Add CSSKeyframesRule.{findRule, deleteRule, appendRule}Manish Goregaokar2016-11-231-1/+48
|
* Transitively deparent on removalManish Goregaokar2016-11-231-1/+6
| | | | Chrome and Firefox do this already, probably a spec oversight
* Make parent stylesheet optional for CSSRulesManish Goregaokar2016-11-231-6/+9
|
* Add support for keyframe-backed CSSRules, CSSKeyframesRule.cssRules and ↵Manish Goregaokar2016-11-231-2/+21
| | | | CSSKeyframeRule
* Implement ToCss serialization for CSSRulesNazım Can Altınova2016-11-181-2/+2
|
* Support basic immutable CSSOMManish Goregaokar2016-11-151-0/+50