diff --git a/Base/res/html/misc/welcome.html b/Base/res/html/misc/welcome.html index 9181d6e737..48da06eb4f 100644 --- a/Base/res/html/misc/welcome.html +++ b/Base/res/html/misc/welcome.html @@ -96,8 +96,9 @@
  • :nth-last-of-type
  • :empty
  • :root
  • -
  • :is
  • -
  • :not
  • +
  • :is()
  • +
  • :not()
  • +
  • :where()
  • :hover
  • Properties

  • Backgrounds
  • diff --git a/Base/res/html/misc/where-selector.html b/Base/res/html/misc/where-selector.html new file mode 100644 index 0000000000..f5749a76a5 --- /dev/null +++ b/Base/res/html/misc/where-selector.html @@ -0,0 +1,38 @@ + + + + + :where() test + + + +

    :where() test

    +
    +

    Nothing

    +

    These should have no background.

    +
    +
    +
    +

    .special :where(h2, p)

    +

    These should have a green background.

    +
    +
    +
    +

    .forgiving :where(&&&fakhsdaskjhd, h2, p)

    +

    These should have a green background. :where() takes a "permissive selector list", + so even though part of it is invalid, this does not make the whole selector-list invalid.

    +
    + +