Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | stylo: Fix StyleSheetInner/Stylesheet mapping | Emilio Cobos Álvarez | 2017-07-02 | 1 | -1/+7 |
| | | | | | | The key of this patch is the split between Stylesheet and StylesheetContents. Gecko will use StylesheetContents, which maps to a ServoStyleSheetInner. | ||||
* | Thread ParseError return values through CSS parsing. | Josh Matthews | 2017-06-09 | 1 | -2/+3 |
| | |||||
* | style: Split stylesheets.rs | Emilio Cobos Álvarez | 2017-06-04 | 1 | -2/+1 |
| | | | | | | | | | | | | | This file has become quite bloated lately. This commit deletes that file in favor of a set of submodules. The only noticeable change apart from code move, is converting deep_clone_foo methods into a trait. It also unifies logic related to different style rules in the same place. There's some missing work, specially related to font-face and counter-style, but I think this is worth landing in the meantime. | ||||
* | Fix up script and layout. | Bobby Holley | 2017-05-02 | 1 | -1/+1 |
| | |||||
* | Keep custom-ident and string separate in animation/keyframes name. | Simon Sapin | 2017-04-26 | 1 | -7/+7 |
| | |||||
* | Use CustomIdent for animation-name and @keyframes | Simon Sapin | 2017-04-26 | 1 | -10/+4 |
| | |||||
* | Use a UrlExtraData type alias to unify url handling logic. | Xidorn Quan | 2017-04-03 | 1 | -3/+1 |
| | |||||
* | Replace RwLock<Keyframe> with Locked<Keyframe> | Simon Sapin | 2017-03-19 | 1 | -1/+1 |
| | |||||
* | Wrap most CSS rules in Locked<_> instead of RwLock<_> | Simon Sapin | 2017-03-19 | 1 | -10/+13 |
| | |||||
* | Introduce a ToCssWithGuard trait | Simon Sapin | 2017-03-19 | 1 | -2/+3 |
| | |||||
* | Borrow input to match_ignore_ascii_case! | Simon Sapin | 2017-02-26 | 1 | -1/+1 |
| | | | | | In cssparser version 0.11, this macro will stop implicitly borrowing its own input. | ||||
* | Make #[dom_struct] a proc_macro attribute | Anthony Ramine | 2017-02-24 | 1 | -0/+1 |
| | |||||
* | Implement CSSKeyframesRule.name | Nazım Can Altınova | 2016-12-14 | 1 | -0/+23 |
| | |||||
* | 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. | ||||
* | Silence a warning | Anthony Ramine | 2016-12-01 | 1 | -1/+0 |
| | |||||
* | Update to Rust 1.15.0-nightly (1c448574b 2016-11-28) | Anthony Ramine | 2016-11-29 | 1 | -2/+0 |
| | |||||
* | Use stylesheet’s base URL and ns prefixes in CSSOM insert/appendRule. | Simon Sapin | 2016-11-28 | 1 | -3/+2 |
| | |||||
* | Make CSSRule always keep a pointer to its parent stylesheet | Simon Sapin | 2016-11-28 | 1 | -8/+7 |
| | | | | even when the parentStylesheet IDL attribute returns null. | ||||
* | Add CSSKeyframesRule.{findRule, deleteRule, appendRule} | Manish Goregaokar | 2016-11-23 | 1 | -1/+48 |
| | |||||
* | Transitively deparent on removal | Manish Goregaokar | 2016-11-23 | 1 | -1/+6 |
| | | | | Chrome and Firefox do this already, probably a spec oversight | ||||
* | Make parent stylesheet optional for CSSRules | Manish Goregaokar | 2016-11-23 | 1 | -6/+9 |
| | |||||
* | Add support for keyframe-backed CSSRules, CSSKeyframesRule.cssRules and ↵ | Manish Goregaokar | 2016-11-23 | 1 | -2/+21 |
| | | | | CSSKeyframeRule | ||||
* | Implement ToCss serialization for CSSRules | Nazım Can Altınova | 2016-11-18 | 1 | -2/+2 |
| | |||||
* | Support basic immutable CSSOM | Manish Goregaokar | 2016-11-15 | 1 | -0/+50 |