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 <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes is part of a series to fix #17182 <!-- Either: --> I am running this to identify what tests will fail; as the other PRs in the series are merged, I believe the tests that pass will change as well. - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> Source-Repo: https://github.com/servo/servo Source-Revision: 4b6e79337ef975e3ec752513b76ae6a6284c1199
193 lines
6.5 KiB
Rust
193 lines
6.5 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* 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::ToCss;
|
|
use parser::SelectorImpl;
|
|
use std::ascii::AsciiExt;
|
|
use std::fmt;
|
|
|
|
#[derive(Eq, PartialEq, Clone)]
|
|
pub struct AttrSelectorWithNamespace<Impl: SelectorImpl> {
|
|
pub namespace: NamespaceConstraint<(Impl::NamespacePrefix, Impl::NamespaceUrl)>,
|
|
pub local_name: Impl::LocalName,
|
|
pub local_name_lower: Impl::LocalName,
|
|
pub operation: ParsedAttrSelectorOperation<Impl::AttrValue>,
|
|
pub never_matches: bool,
|
|
}
|
|
|
|
impl<Impl: SelectorImpl> AttrSelectorWithNamespace<Impl> {
|
|
pub fn namespace(&self) -> NamespaceConstraint<&Impl::NamespaceUrl> {
|
|
match self.namespace {
|
|
NamespaceConstraint::Any => NamespaceConstraint::Any,
|
|
NamespaceConstraint::Specific((_, ref url)) => {
|
|
NamespaceConstraint::Specific(url)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Eq, PartialEq, Clone)]
|
|
pub enum NamespaceConstraint<NamespaceUrl> {
|
|
Any,
|
|
|
|
/// Empty string for no namespace
|
|
Specific(NamespaceUrl),
|
|
}
|
|
|
|
#[derive(Eq, PartialEq, Clone)]
|
|
pub enum ParsedAttrSelectorOperation<AttrValue> {
|
|
Exists,
|
|
WithValue {
|
|
operator: AttrSelectorOperator,
|
|
case_sensitivity: ParsedCaseSensitivity,
|
|
expected_value: AttrValue,
|
|
}
|
|
}
|
|
|
|
#[derive(Eq, PartialEq, Clone)]
|
|
pub enum AttrSelectorOperation<AttrValue> {
|
|
Exists,
|
|
WithValue {
|
|
operator: AttrSelectorOperator,
|
|
case_sensitivity: CaseSensitivity,
|
|
expected_value: AttrValue,
|
|
}
|
|
}
|
|
|
|
impl<AttrValue> AttrSelectorOperation<AttrValue> {
|
|
pub fn eval_str(&self, element_attr_value: &str) -> bool where AttrValue: AsRef<str> {
|
|
match *self {
|
|
AttrSelectorOperation::Exists => true,
|
|
AttrSelectorOperation::WithValue { operator, case_sensitivity, ref expected_value } => {
|
|
operator.eval_str(element_attr_value, expected_value.as_ref(), case_sensitivity)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Eq, PartialEq, Clone, Copy)]
|
|
pub enum AttrSelectorOperator {
|
|
Equal,
|
|
Includes,
|
|
DashMatch,
|
|
Prefix,
|
|
Substring,
|
|
Suffix,
|
|
}
|
|
|
|
impl ToCss for AttrSelectorOperator {
|
|
fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write {
|
|
// https://drafts.csswg.org/cssom/#serializing-selectors
|
|
// See "attribute selector".
|
|
dest.write_str(match *self {
|
|
AttrSelectorOperator::Equal => "=",
|
|
AttrSelectorOperator::Includes => "~=",
|
|
AttrSelectorOperator::DashMatch => "|=",
|
|
AttrSelectorOperator::Prefix => "^=",
|
|
AttrSelectorOperator::Substring => "*=",
|
|
AttrSelectorOperator::Suffix => "$=",
|
|
})
|
|
}
|
|
}
|
|
|
|
impl AttrSelectorOperator {
|
|
pub fn eval_str(self, element_attr_value: &str, attr_selector_value: &str,
|
|
case_sensitivity: CaseSensitivity) -> bool {
|
|
let e = element_attr_value.as_bytes();
|
|
let s = attr_selector_value.as_bytes();
|
|
let case = case_sensitivity;
|
|
match self {
|
|
AttrSelectorOperator::Equal => {
|
|
case.eq(e, s)
|
|
}
|
|
AttrSelectorOperator::Prefix => {
|
|
e.len() >= s.len() && case.eq(&e[..s.len()], s)
|
|
}
|
|
AttrSelectorOperator::Suffix => {
|
|
e.len() >= s.len() && case.eq(&e[(e.len() - s.len())..], s)
|
|
}
|
|
AttrSelectorOperator::Substring => {
|
|
case.contains(element_attr_value, attr_selector_value)
|
|
}
|
|
AttrSelectorOperator::Includes => {
|
|
element_attr_value.split(SELECTOR_WHITESPACE)
|
|
.any(|part| case.eq(part.as_bytes(), s))
|
|
}
|
|
AttrSelectorOperator::DashMatch => {
|
|
case.eq(e, s) || (
|
|
e.get(s.len()) == Some(&b'-') &&
|
|
case.eq(&e[..s.len()], s)
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// The definition of whitespace per CSS Selectors Level 3 § 4.
|
|
pub static SELECTOR_WHITESPACE: &'static [char] = &[' ', '\t', '\n', '\r', '\x0C'];
|
|
|
|
#[derive(Eq, PartialEq, Clone, Copy, Debug)]
|
|
pub enum ParsedCaseSensitivity {
|
|
CaseSensitive,
|
|
AsciiCaseInsensitive,
|
|
AsciiCaseInsensitiveIfInHtmlElementInHtmlDocument,
|
|
}
|
|
|
|
impl ParsedCaseSensitivity {
|
|
pub fn to_unconditional(self, is_html_element_in_html_document: bool) -> CaseSensitivity {
|
|
match self {
|
|
ParsedCaseSensitivity::AsciiCaseInsensitiveIfInHtmlElementInHtmlDocument
|
|
if is_html_element_in_html_document => {
|
|
CaseSensitivity::AsciiCaseInsensitive
|
|
}
|
|
ParsedCaseSensitivity::AsciiCaseInsensitiveIfInHtmlElementInHtmlDocument => {
|
|
CaseSensitivity::CaseSensitive
|
|
}
|
|
ParsedCaseSensitivity::CaseSensitive => CaseSensitivity::CaseSensitive,
|
|
ParsedCaseSensitivity::AsciiCaseInsensitive => CaseSensitivity::AsciiCaseInsensitive,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Eq, PartialEq, Clone, Copy, Debug)]
|
|
pub enum CaseSensitivity {
|
|
CaseSensitive,
|
|
AsciiCaseInsensitive,
|
|
}
|
|
|
|
impl CaseSensitivity {
|
|
pub fn eq(self, a: &[u8], b: &[u8]) -> bool {
|
|
match self {
|
|
CaseSensitivity::CaseSensitive => a == b,
|
|
CaseSensitivity::AsciiCaseInsensitive => a.eq_ignore_ascii_case(b),
|
|
}
|
|
}
|
|
|
|
pub fn contains(self, haystack: &str, needle: &str) -> bool {
|
|
match self {
|
|
CaseSensitivity::CaseSensitive => haystack.contains(needle),
|
|
CaseSensitivity::AsciiCaseInsensitive => {
|
|
if let Some((&n_first_byte, n_rest)) = needle.as_bytes().split_first() {
|
|
haystack.bytes().enumerate().any(|(i, byte)| {
|
|
if !byte.eq_ignore_ascii_case(&n_first_byte) {
|
|
return false
|
|
}
|
|
let after_this_byte = &haystack.as_bytes()[i + 1..];
|
|
match after_this_byte.get(..n_rest.len()) {
|
|
None => false,
|
|
Some(haystack_slice) => {
|
|
haystack_slice.eq_ignore_ascii_case(n_rest)
|
|
}
|
|
}
|
|
})
|
|
} else {
|
|
// any_str.contains("") == true,
|
|
// though these cases should be handled with *NeverMatches and never go here.
|
|
true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|