diff options
author | Jonathan Chan <jyc@eqv.io> | 2017-06-07 10:22:36 -0700 |
---|---|---|
committer | Jonathan Chan <jyc@eqv.io> | 2017-07-12 01:03:58 -0700 |
commit | 92ec8f15f0be52a24f5c220cda78088fca701534 (patch) | |
tree | 0998dc96ecd4b2bedcaa733d0b7d64da5a05fe49 /components/script/dom/cssstylerule.rs | |
parent | f85778884f8434f0ed189ab3633b490985b3eb2b (diff) | |
download | servo-92ec8f15f0be52a24f5c220cda78088fca701534.tar.gz servo-92ec8f15f0be52a24f5c220cda78088fca701534.zip |
Implement CSSStyleRule.selectorText.
We parse when assigning using the namespaces of the stylesheet. It isn't
clear if the spec says to do that (Firefox doesn't support the setter at
all, Chrome does, Safari doesn't); the spec issue is here:
https://github.com/w3c/csswg-drafts/issues/1511
Also fix ToCss implementation of AttrSelectorOperator to not pad with
spaces, to conform with CSSOM. This means we have to update some unit
tests that expect operators with spaces around them in attribute
selectors to roundtrip.
See the "attribute selector" section of "Serializing Selectors" here:
https://drafts.csswg.org/cssom/#serializing-selectors
CSSStyleRule.selectorText is specified here:
https://drafts.csswg.org/cssom/#dom-cssstylerule-selectortext
Diffstat (limited to 'components/script/dom/cssstylerule.rs')
-rw-r--r-- | components/script/dom/cssstylerule.rs | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/components/script/dom/cssstylerule.rs b/components/script/dom/cssstylerule.rs index 607f2cfb816..f9df3afc2ad 100644 --- a/components/script/dom/cssstylerule.rs +++ b/components/script/dom/cssstylerule.rs @@ -2,7 +2,10 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +use cssparser::{Parser as CssParser, ParserInput as CssParserInput}; +use cssparser::ToCss; use dom::bindings::codegen::Bindings::CSSStyleRuleBinding::{self, CSSStyleRuleMethods}; +use dom::bindings::codegen::Bindings::WindowBinding::WindowBinding::WindowMethods; use dom::bindings::inheritance::Castable; use dom::bindings::js::{JS, MutNullableJS, Root}; use dom::bindings::reflector::{DomObject, reflect_dom_object}; @@ -12,9 +15,12 @@ use dom::cssstyledeclaration::{CSSModificationAccess, CSSStyleDeclaration, CSSSt use dom::cssstylesheet::CSSStyleSheet; use dom::window::Window; use dom_struct::dom_struct; +use selectors::parser::SelectorList; +use std::mem; +use style::selector_parser::SelectorParser; use style::shared_lock::{Locked, ToCssWithGuard}; use style::stylearc::Arc; -use style::stylesheets::StyleRule; +use style::stylesheets::{StyleRule, Origin}; #[dom_struct] pub struct CSSStyleRule { @@ -71,4 +77,33 @@ impl CSSStyleRuleMethods for CSSStyleRule { ) }) } + + // https://drafts.csswg.org/cssom/#dom-cssstylerule-selectortext + fn SelectorText(&self) -> DOMString { + let guard = self.cssrule.shared_lock().read(); + let stylerule = self.stylerule.read_with(&guard); + return DOMString::from_string(stylerule.selectors.to_css_string()); + } + + // https://drafts.csswg.org/cssom/#dom-cssstylerule-selectortext + fn SetSelectorText(&self, value: DOMString) { + // It's not clear from the spec if we should use the stylesheet's namespaces. + // https://github.com/w3c/csswg-drafts/issues/1511 + let namespaces = self.cssrule.parent_stylesheet().style_stylesheet().contents.namespaces.read(); + let parser = SelectorParser { + stylesheet_origin: Origin::Author, + namespaces: &namespaces, + }; + let mut css_parser = CssParserInput::new(&*value); + let mut css_parser = CssParser::new(&mut css_parser); + if let Ok(mut s) = SelectorList::parse(&parser, &mut css_parser) { + // This mirrors what we do in CSSStyleOwner::mutate_associated_block. + let mut guard = self.cssrule.shared_lock().write(); + let mut stylerule = self.stylerule.write_with(&mut guard); + mem::swap(&mut stylerule.selectors, &mut s); + // It seems like we will want to avoid having to invalidate all + // stylesheets eventually! + self.global().as_window().Document().invalidate_stylesheets(); + } + } } |