mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Simplify <an+b> in selector args when serializing.
This commit is contained in:
parent
8e14d93602
commit
f0e83f6d8a
3 changed files with 28 additions and 37 deletions
|
@ -797,6 +797,23 @@ impl ToCss for Combinator {
|
||||||
impl<Impl: SelectorImpl> ToCss for Component<Impl> {
|
impl<Impl: SelectorImpl> ToCss for Component<Impl> {
|
||||||
fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write {
|
fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write {
|
||||||
use self::Component::*;
|
use self::Component::*;
|
||||||
|
|
||||||
|
/// Serialize <an+b> values (part of the CSS Syntax spec, but currently only used here).
|
||||||
|
/// https://drafts.csswg.org/css-syntax-3/#serialize-an-anb-value
|
||||||
|
fn write_affine<W>(dest: &mut W, a: i32, b: i32) -> fmt::Result where W: fmt::Write {
|
||||||
|
match (a, b) {
|
||||||
|
(0, 0) => dest.write_char('0'),
|
||||||
|
|
||||||
|
(1, 0) => dest.write_char('n'),
|
||||||
|
(_, 0) => write!(dest, "{}n", a),
|
||||||
|
|
||||||
|
(0, _) => write!(dest, "{}", b),
|
||||||
|
(1, _) => write!(dest, "n{:+}", b),
|
||||||
|
(-1, _) => write!(dest, "-n{:+}", b),
|
||||||
|
(_, _) => write!(dest, "{}n{:+}", a, b),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
match *self {
|
match *self {
|
||||||
Combinator(ref c) => {
|
Combinator(ref c) => {
|
||||||
c.to_css(dest)
|
c.to_css(dest)
|
||||||
|
@ -861,10 +878,17 @@ impl<Impl: SelectorImpl> ToCss for Component<Impl> {
|
||||||
FirstOfType => dest.write_str(":first-of-type"),
|
FirstOfType => dest.write_str(":first-of-type"),
|
||||||
LastOfType => dest.write_str(":last-of-type"),
|
LastOfType => dest.write_str(":last-of-type"),
|
||||||
OnlyOfType => dest.write_str(":only-of-type"),
|
OnlyOfType => dest.write_str(":only-of-type"),
|
||||||
NthChild(a, b) => write!(dest, ":nth-child({}n{:+})", a, b),
|
NthChild(a, b) | NthLastChild(a, b) | NthOfType(a, b) | NthLastOfType(a, b) => {
|
||||||
NthLastChild(a, b) => write!(dest, ":nth-last-child({}n{:+})", a, b),
|
match *self {
|
||||||
NthOfType(a, b) => write!(dest, ":nth-of-type({}n{:+})", a, b),
|
NthChild(_, _) => dest.write_str(":nth-child(")?,
|
||||||
NthLastOfType(a, b) => write!(dest, ":nth-last-of-type({}n{:+})", a, b),
|
NthLastChild(_, _) => dest.write_str(":nth-last-child(")?,
|
||||||
|
NthOfType(_, _) => dest.write_str(":nth-of-type(")?,
|
||||||
|
NthLastOfType(_, _) => dest.write_str(":nth-last-of-type(")?,
|
||||||
|
_ => unreachable!(),
|
||||||
|
}
|
||||||
|
write_affine(dest, a, b)?;
|
||||||
|
dest.write_char(')')
|
||||||
|
}
|
||||||
NonTSPseudoClass(ref pseudo) => pseudo.to_css(dest),
|
NonTSPseudoClass(ref pseudo) => pseudo.to_css(dest),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
[selectorSerialize.htm]
|
|
||||||
type: testharness
|
|
||||||
[:nth-child serialization produces canonical form]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[single pseudo (simple) selector "nth-child" which accepts arguments in the sequence of simple selectors that is not a universal selector]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[single pseudo (simple) selector "nth-last-child" which accepts arguments in the sequence of simple selectors that is not a universal selector]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[single pseudo (simple) selector "nth-of-child" which accepts arguments in the sequence of simple selectors that is not a universal selector]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[single pseudo (simple) selector ":nth-last-of-type" which accepts arguments in the sequence of simple selectors that is not a universal selector]
|
|
||||||
expected: FAIL
|
|
|
@ -1,17 +0,0 @@
|
||||||
[selectorSerialize.html]
|
|
||||||
type: testharness
|
|
||||||
[:nth-child serialization produces canonical form]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[single pseudo (simple) selector "nth-child" which accepts arguments in the sequence of simple selectors that is not a universal selector]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[single pseudo (simple) selector "nth-last-child" which accepts arguments in the sequence of simple selectors that is not a universal selector]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[single pseudo (simple) selector "nth-of-child" which accepts arguments in the sequence of simple selectors that is not a universal selector]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[single pseudo (simple) selector ":nth-last-of-type" which accepts arguments in the sequence of simple selectors that is not a universal selector]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue