Bug 1664718 - Allow :is() and :where() to have better error recovery. r=xidorn

Adjust is-where-parsing.html to work with both the new and old behavior,
and add a test for the new behavior.

Depends on D90049

Differential Revision: https://phabricator.services.mozilla.com/D90050
This commit is contained in:
Emilio Cobos Álvarez 2020-09-14 15:04:22 +00:00
Родитель 2ff9b32c49
Коммит 4c86d9e159
7 изменённых файлов: 159 добавлений и 29 удалений

Просмотреть файл

@ -1244,9 +1244,14 @@ function runTests() {
test_balanced_unparseable(":not(:nth-child(()))"); test_balanced_unparseable(":not(:nth-child(()))");
// :-moz-any() // :-moz-any()
test_balanced_unparseable(":-moz-any()"); let parseable_if_any_is_is_and_has_better_error_recovery =
test_balanced_unparseable(":-moz-any('foo')"); SpecialPowers.getBoolPref("layout.css.moz-any-is-is.enabled") &&
let parseable_if_any_is_is = SpecialPowers.getBoolPref("layout.css.moz-any-is-is.enabled") ? test_parseable : test_balanced_unparseable; SpecialPowers.getBoolPref("layout.css.is-and-where-better-error-recovery.enabled")
? test_parseable : test_balanced_unparseable;
parseable_if_any_is_is_and_has_better_error_recovery(":-moz-any()");
parseable_if_any_is_is_and_has_better_error_recovery(":-moz-any('foo')");
let parseable_if_any_is_is = SpecialPowers.getBoolPref("layout.css.moz-any-is-is.enabled")
? test_parseable : test_balanced_unparseable;
parseable_if_any_is_is(":-moz-any(div p)"); parseable_if_any_is_is(":-moz-any(div p)");
parseable_if_any_is_is(":-moz-any(div ~ p)"); parseable_if_any_is_is(":-moz-any(div ~ p)");
parseable_if_any_is_is(":-moz-any(div~p)"); parseable_if_any_is_is(":-moz-any(div~p)");
@ -1261,7 +1266,7 @@ function runTests() {
test_parseable(":-moz-any(div,p,:link,span:focus)"); test_parseable(":-moz-any(div,p,:link,span:focus)");
test_parseable(":-moz-any(:active,:focus)"); test_parseable(":-moz-any(:active,:focus)");
test_parseable(":-moz-any(:active,:link:focus)"); test_parseable(":-moz-any(:active,:link:focus)");
test_balanced_unparseable(":-moz-any(div,:nonexistentpseudo)"); parseable_if_any_is_is_and_has_better_error_recovery(":-moz-any(div,:nonexistentpseudo)");
var any_elts = "<input type='text'><a href='http://www.example.com/'></a><div></div><a name='foo'>"; var any_elts = "<input type='text'><a href='http://www.example.com/'></a><div></div><a name='foo'>";
test_selector_in_html(":-moz-any(a,input)", any_elts, test_selector_in_html(":-moz-any(a,input)", any_elts,
bodychildset([0, 1, 3]), bodychildset([2])); bodychildset([0, 1, 3]), bodychildset([2]));
@ -1311,10 +1316,6 @@ function runTests() {
test_parseable("::-moz-color-swatch:not(:hover)"); test_parseable("::-moz-color-swatch:not(:hover)");
test_parseable("::-moz-color-swatch:where(:hover)"); test_parseable("::-moz-color-swatch:where(:hover)");
test_balanced_unparseable("::-moz-color-swatch:not(.foo)"); test_balanced_unparseable("::-moz-color-swatch:not(.foo)");
test_balanced_unparseable("::-moz-color-swatch:where(.foo)");
test_balanced_unparseable("::-moz-color-swatch:is(.foo)");
test_balanced_unparseable("::-moz-color-swatch:where(p, :hover)");
test_balanced_unparseable("::-moz-color-swatch:is(p, :hover)");
test_balanced_unparseable("::-moz-color-swatch:first-child"); test_balanced_unparseable("::-moz-color-swatch:first-child");
test_balanced_unparseable("::-moz-color-swatch:host"); test_balanced_unparseable("::-moz-color-swatch:host");
test_balanced_unparseable("::-moz-color-swatch:host(div)"); test_balanced_unparseable("::-moz-color-swatch:host(div)");
@ -1322,6 +1323,23 @@ function runTests() {
test_balanced_unparseable("::-moz-color-swatch:hover#foo"); test_balanced_unparseable("::-moz-color-swatch:hover#foo");
test_balanced_unparseable(".foo::after:not(.bar) ~ h3"); test_balanced_unparseable(".foo::after:not(.bar) ~ h3");
{
let better_error_recovery = SpecialPowers.getBoolPref("layout.css.is-and-where-better-error-recovery.enabled");
let expected_fn = better_error_recovery ? test_parseable : test_balanced_unparseable;
for (let [selector, expected_serialization_when_parseable] of [
["::-moz-color-swatch:where(.foo)", "::-moz-color-swatch:where()"],
["::-moz-color-swatch:is(.foo)", "::-moz-color-swatch:is()"],
["::-moz-color-swatch:where(p, :hover)", "::-moz-color-swatch:where(:hover)"],
["::-moz-color-swatch:is(p, :hover)", "::-moz-color-swatch:is(:hover)"],
]) {
expected_fn(selector);
if (better_error_recovery) {
should_serialize_to(selector, expected_serialization_when_parseable);
}
}
}
test_parseable(":-moz-broken"); test_parseable(":-moz-broken");
test_parseable(":-moz-loading"); test_parseable(":-moz-loading");

Просмотреть файл

@ -6551,6 +6551,16 @@
value: true value: true
mirror: always mirror: always
# Whether :is() and :where() ignore errors inside their selector lists
# internally, rather than failing to parse altogether.
#
# See https://github.com/w3c/csswg-drafts/issues/3264
- name: layout.css.is-and-where-better-error-recovery.enabled
type: RelaxedAtomicBool
value: @IS_EARLY_BETA_OR_EARLIER@
mirror: always
rust: true
# Whether frame visibility tracking is enabled globally. # Whether frame visibility tracking is enabled globally.
- name: layout.framevisibility.enabled - name: layout.framevisibility.enabled
type: bool type: bool

Просмотреть файл

@ -251,6 +251,11 @@ pub trait Parser<'i> {
false false
} }
/// The error recovery that selector lists inside :is() and :where() have.
fn is_and_where_error_recovery(&self) -> ParseErrorRecovery {
ParseErrorRecovery::IgnoreInvalidSelector
}
/// Whether the given function name is an alias for the `:is()` function. /// Whether the given function name is an alias for the `:is()` function.
fn is_is_alias(&self, _name: &str) -> bool { fn is_is_alias(&self, _name: &str) -> bool {
false false
@ -329,6 +334,17 @@ pub struct SelectorList<Impl: SelectorImpl>(
#[shmem(field_bound)] pub SmallVec<[Selector<Impl>; 1]>, #[shmem(field_bound)] pub SmallVec<[Selector<Impl>; 1]>,
); );
/// How to treat invalid selectors in a selector list.
pub enum ParseErrorRecovery {
/// Discard the entire selector list, this is the default behavior for
/// almost all of CSS.
DiscardList,
/// Ignore invalid selectors, potentially creating an empty selector list.
///
/// This is the error recovery mode of :is() and :where()
IgnoreInvalidSelector,
}
impl<Impl: SelectorImpl> SelectorList<Impl> { impl<Impl: SelectorImpl> SelectorList<Impl> {
/// Parse a comma-separated list of Selectors. /// Parse a comma-separated list of Selectors.
/// <https://drafts.csswg.org/selectors/#grouping> /// <https://drafts.csswg.org/selectors/#grouping>
@ -341,26 +357,42 @@ impl<Impl: SelectorImpl> SelectorList<Impl> {
where where
P: Parser<'i, Impl = Impl>, P: Parser<'i, Impl = Impl>,
{ {
Self::parse_with_state(parser, input, SelectorParsingState::empty()) Self::parse_with_state(parser, input, SelectorParsingState::empty(), ParseErrorRecovery::DiscardList)
} }
#[inline]
fn parse_with_state<'i, 't, P>( fn parse_with_state<'i, 't, P>(
parser: &P, parser: &P,
input: &mut CssParser<'i, 't>, input: &mut CssParser<'i, 't>,
state: SelectorParsingState, state: SelectorParsingState,
recovery: ParseErrorRecovery,
) -> Result<Self, ParseError<'i, P::Error>> ) -> Result<Self, ParseError<'i, P::Error>>
where where
P: Parser<'i, Impl = Impl>, P: Parser<'i, Impl = Impl>,
{ {
let mut values = SmallVec::new(); let mut values = SmallVec::new();
loop { loop {
values.push(input.parse_until_before(Delimiter::Comma, |input| { let selector = input.parse_until_before(Delimiter::Comma, |input| {
parse_selector(parser, input, state) parse_selector(parser, input, state)
})?); });
match input.next() {
Err(_) => return Ok(SelectorList(values)), let was_ok = selector.is_ok();
Ok(&Token::Comma) => continue, match selector {
Ok(_) => unreachable!(), Ok(selector) => values.push(selector),
Err(err) => match recovery {
ParseErrorRecovery::DiscardList => return Err(err),
ParseErrorRecovery::IgnoreInvalidSelector => {},
},
}
loop {
match input.next() {
Err(_) => return Ok(SelectorList(values)),
Ok(&Token::Comma) => break,
Ok(_) => {
debug_assert!(!was_ok, "Shouldn't have got a selector if getting here");
}
}
} }
} }
} }
@ -1251,18 +1283,18 @@ impl<Impl: SelectorImpl> Debug for LocalName<Impl> {
} }
} }
fn serialize_selector_list<'a, Impl, I, W>(mut iter: I, dest: &mut W) -> fmt::Result fn serialize_selector_list<'a, Impl, I, W>(iter: I, dest: &mut W) -> fmt::Result
where where
Impl: SelectorImpl, Impl: SelectorImpl,
I: Iterator<Item = &'a Selector<Impl>>, I: Iterator<Item = &'a Selector<Impl>>,
W: fmt::Write, W: fmt::Write,
{ {
let first = iter let mut first = true;
.next()
.expect("Empty SelectorList, should contain at least one selector");
first.to_css(dest)?;
for selector in iter { for selector in iter {
dest.write_str(", ")?; if !first {
dest.write_str(", ")?;
}
first = false;
selector.to_css(dest)?; selector.to_css(dest)?;
} }
Ok(()) Ok(())
@ -2266,6 +2298,7 @@ where
parser, parser,
input, input,
state | SelectorParsingState::DISALLOW_PSEUDOS, state | SelectorParsingState::DISALLOW_PSEUDOS,
parser.is_and_where_error_recovery(),
)?; )?;
Ok(component(inner.0.into_vec().into_boxed_slice())) Ok(component(inner.0.into_vec().into_boxed_slice()))
} }

Просмотреть файл

@ -14,7 +14,7 @@ use crate::string_cache::{Atom, Namespace, WeakAtom, WeakNamespace};
use crate::values::serialize_atom_identifier; use crate::values::serialize_atom_identifier;
use cssparser::{BasicParseError, BasicParseErrorKind, Parser}; use cssparser::{BasicParseError, BasicParseErrorKind, Parser};
use cssparser::{CowRcStr, SourceLocation, ToCss, Token}; use cssparser::{CowRcStr, SourceLocation, ToCss, Token};
use selectors::parser::SelectorParseErrorKind; use selectors::parser::{SelectorParseErrorKind, ParseErrorRecovery};
use selectors::parser::{self as selector_parser, Selector}; use selectors::parser::{self as selector_parser, Selector};
use selectors::visitor::SelectorVisitor; use selectors::visitor::SelectorVisitor;
use selectors::SelectorList; use selectors::SelectorList;
@ -340,6 +340,15 @@ impl<'a, 'i> ::selectors::Parser<'i> for SelectorParser<'a> {
true true
} }
#[inline]
fn is_and_where_error_recovery(&self) -> ParseErrorRecovery {
if static_prefs::pref!("layout.css.is-and-where-better-error-recovery.enabled") {
ParseErrorRecovery::IgnoreInvalidSelector
} else {
ParseErrorRecovery::DiscardList
}
}
#[inline] #[inline]
fn parse_part(&self) -> bool { fn parse_part(&self) -> bool {
true true

Просмотреть файл

@ -0,0 +1,2 @@
[is-where-error-recovery.tentative.html]
prefs: [layout.css.is-and-where-better-error-recovery.enabled:true]

Просмотреть файл

@ -0,0 +1,54 @@
<!doctype html>
<title>CSS Selectors: :is() and :where() error recovery</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3676">
<link rel="help" href="https://drafts.csswg.org/selectors-4/#matches">
<link rel="help" href="https://drafts.csswg.org/selectors-4/#zero-matches">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style id="test-sheet">
random-selector { color: blue; }
</style>
<div id="test-div"></div>
<script>
let rule = document.getElementById("test-sheet").sheet.cssRules[0];
test(function() {
for (let pseudo of ["is", "where"]) {
rule.selectorText = "random-selector";
let invalidSelector = `:${pseudo}(:total-nonsense)`;
rule.selectorText = invalidSelector;
assert_not_equals(
rule.selectorText,
"random-selector",
"Should've parsed",
);
assert_not_equals(
rule.selectorText,
invalidSelector,
"Should not be considered valid and parsed as-is",
);
let emptyList = `:${pseudo}()`;
assert_equals(
rule.selectorText,
emptyList,
"Should be serialized as an empty selector-list",
);
assert_equals(document.querySelector(emptyList), null, "Should never match, but should parse");
for (let mixedList of [
`:${pseudo}(:total-nonsense, #test-div)`,
`:${pseudo}(:total-nonsense and-more-stuff, #test-div)`,
`:${pseudo}(weird-token || and-more-stuff, #test-div)`,
]) {
rule.selectorText = mixedList;
assert_equals(
rule.selectorText,
`:${pseudo}(#test-div)`,
`${mixedList}: Should ignore invalid selectors`,
);
let testDiv = document.getElementById("test-div");
assert_equals(document.querySelector(mixedList), testDiv, "Should correctly match");
assert_equals(getComputedStyle(testDiv).color, "rgb(0, 0, 255)", "test element should be blue");
}
}
});
</script>

Просмотреть файл

@ -5,18 +5,22 @@
<link rel="help" href="https://drafts.csswg.org/selectors-4/#zero-matches"> <link rel="help" href="https://drafts.csswg.org/selectors-4/#zero-matches">
<script src="/resources/testharness.js"></script> <script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script> <script src="/resources/testharnessreport.js"></script>
<style id="test-sheet">
random-selector { color: blue; }
</style>
<script> <script>
let rule = document.getElementById("test-sheet").sheet.cssRules[0];
function assert_valid(expected_valid, pattern, description) { function assert_valid(expected_valid, pattern, description) {
test(function() { test(function() {
for (let pseudo of ["is", "where"]) { for (let pseudo of ["is", "where"]) {
let valid = false;
let selector = pattern.replace("{}", ":" + pseudo) let selector = pattern.replace("{}", ":" + pseudo)
try { rule.selectorText = "random-selector";
document.querySelector(selector); rule.selectorText = selector;
valid = true; (expected_valid ? assert_equals : assert_not_equals)(
} catch (ex) {} rule.selectorText,
selector,
assert_equals(valid, expected_valid, `${description}: ${selector}`); `${description}: ${selector}`
);
} }
}, description); }, description);
} }