From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../css/selectors/parsing/parse-attribute.html | 30 ++++++++++++++++ .../tests/css/selectors/parsing/parse-child.html | 11 ++++++ .../tests/css/selectors/parsing/parse-class.html | 15 ++++++++ .../css/selectors/parsing/parse-descendant.html | 13 +++++++ .../css/selectors/parsing/parse-focus-visible.html | 13 +++++++ .../parse-has-disallow-nesting-has-inside-has.html | 13 +++++++ .../tests/css/selectors/parsing/parse-has.html | 41 ++++++++++++++++++++++ .../tests/css/selectors/parsing/parse-id.html | 13 +++++++ .../tests/css/selectors/parsing/parse-is.html | 18 ++++++++++ .../tests/css/selectors/parsing/parse-not.html | 37 +++++++++++++++++++ .../tests/css/selectors/parsing/parse-sibling.html | 12 +++++++ .../css/selectors/parsing/parse-universal.html | 14 ++++++++ .../tests/css/selectors/parsing/parse-where.html | 18 ++++++++++ 13 files changed, 248 insertions(+) create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-attribute.html create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-child.html create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-class.html create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-descendant.html create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-focus-visible.html create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-has-disallow-nesting-has-inside-has.html create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-has.html create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-id.html create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-is.html create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-not.html create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-sibling.html create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-universal.html create mode 100644 testing/web-platform/tests/css/selectors/parsing/parse-where.html (limited to 'testing/web-platform/tests/css/selectors/parsing') diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-attribute.html b/testing/web-platform/tests/css/selectors/parsing/parse-attribute.html new file mode 100644 index 0000000000..a8fcfb24f5 --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-attribute.html @@ -0,0 +1,30 @@ + + +CSS Selectors: Attribute selectors + + + + + diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-child.html b/testing/web-platform/tests/css/selectors/parsing/parse-child.html new file mode 100644 index 0000000000..510c45db86 --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-child.html @@ -0,0 +1,11 @@ + + +CSS Selectors: Child combinators + + + + + diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-class.html b/testing/web-platform/tests/css/selectors/parsing/parse-class.html new file mode 100644 index 0000000000..00abcf838d --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-class.html @@ -0,0 +1,15 @@ + + +CSS Selectors: Class selectors + + + + + diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-descendant.html b/testing/web-platform/tests/css/selectors/parsing/parse-descendant.html new file mode 100644 index 0000000000..5ff3a7bbfd --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-descendant.html @@ -0,0 +1,13 @@ + + +CSS Selectors: Descendant combinator + + + + + diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-focus-visible.html b/testing/web-platform/tests/css/selectors/parsing/parse-focus-visible.html new file mode 100644 index 0000000000..52ac963add --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-focus-visible.html @@ -0,0 +1,13 @@ + + +CSS Selectors: :focus-visible pseudo-class + + + + + + diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-has-disallow-nesting-has-inside-has.html b/testing/web-platform/tests/css/selectors/parsing/parse-has-disallow-nesting-has-inside-has.html new file mode 100644 index 0000000000..9cf989fcbe --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-has-disallow-nesting-has-inside-has.html @@ -0,0 +1,13 @@ + + +CSS Selectors: The relational pseudo-class (disallow nesting :has() inside :has()) + + + + + + diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-has.html b/testing/web-platform/tests/css/selectors/parsing/parse-has.html new file mode 100644 index 0000000000..5d071010b4 --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-has.html @@ -0,0 +1,41 @@ + + +CSS Selectors: The relational pseudo-class + + + + + + diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-id.html b/testing/web-platform/tests/css/selectors/parsing/parse-id.html new file mode 100644 index 0000000000..2441c4217e --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-id.html @@ -0,0 +1,13 @@ + + +CSS Selectors: ID selectors + + + + + diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-is.html b/testing/web-platform/tests/css/selectors/parsing/parse-is.html new file mode 100644 index 0000000000..68236445c5 --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-is.html @@ -0,0 +1,18 @@ + + +CSS Selectors: The Matches-Any Pseudo-class: ':is()' + + + + + diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-not.html b/testing/web-platform/tests/css/selectors/parsing/parse-not.html new file mode 100644 index 0000000000..f455059251 --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-not.html @@ -0,0 +1,37 @@ + + +CSS Selectors: The negation pseudo-class + + + + + diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-sibling.html b/testing/web-platform/tests/css/selectors/parsing/parse-sibling.html new file mode 100644 index 0000000000..4f7a7a3fbc --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-sibling.html @@ -0,0 +1,12 @@ + + +CSS Selectors: Sibling combinators + + + + + diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-universal.html b/testing/web-platform/tests/css/selectors/parsing/parse-universal.html new file mode 100644 index 0000000000..e944a93f12 --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-universal.html @@ -0,0 +1,14 @@ + + +CSS Selectors: Universal selector + + + + + diff --git a/testing/web-platform/tests/css/selectors/parsing/parse-where.html b/testing/web-platform/tests/css/selectors/parsing/parse-where.html new file mode 100644 index 0000000000..3a90969570 --- /dev/null +++ b/testing/web-platform/tests/css/selectors/parsing/parse-where.html @@ -0,0 +1,18 @@ + + +CSS Selectors: The Specificity-adjustment Pseudo-class: ':where()' + + + + + -- cgit v1.2.3