From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- .../attributes/accesskey/duplicate-key-labels-novalid.html | 9 +++++++++ .../accesskey/multi-character-key-label-novalid.html | 9 +++++++++ .../attributes/data/no-characters-after-hyphen-novalid.html | 4 ++++ .../html/attributes/data/not-xml-serializable-novalid.html | 4 ++++ .../html/attributes/data/value-isvalid.html | 7 +++++++ .../html/attributes/lang/deprecated-tag-haswarn.html | 9 +++++++++ .../html/attributes/lang/empty-isvalid.html | 10 ++++++++++ .../html/attributes/lang/extlang-bad-novalid.html | 9 +++++++++ .../html/attributes/lang/xmllang-different-value-novalid.html | 10 ++++++++++ .../html/attributes/lang/xmllang-only-novalid.html | 10 ++++++++++ .../html/attributes/lang/xmllang-same-isvalid.html | 10 ++++++++++ .../html/attributes/role/unrecognized-role-name-novalid.html | 5 +++++ .../html/attributes/spellcheck/value-bad-novalid.html | 10 ++++++++++ .../html/attributes/spellcheck/value-isvalid.html | 11 +++++++++++ 14 files changed, 117 insertions(+) create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/accesskey/duplicate-key-labels-novalid.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/accesskey/multi-character-key-label-novalid.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/data/no-characters-after-hyphen-novalid.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/data/not-xml-serializable-novalid.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/data/value-isvalid.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/lang/deprecated-tag-haswarn.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/lang/empty-isvalid.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/lang/extlang-bad-novalid.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-different-value-novalid.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-only-novalid.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-same-isvalid.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/role/unrecognized-role-name-novalid.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/spellcheck/value-bad-novalid.html create mode 100644 testing/web-platform/tests/conformance-checkers/html/attributes/spellcheck/value-isvalid.html (limited to 'testing/web-platform/tests/conformance-checkers/html/attributes') diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/accesskey/duplicate-key-labels-novalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/accesskey/duplicate-key-labels-novalid.html new file mode 100644 index 0000000000..1c9800d627 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/accesskey/duplicate-key-labels-novalid.html @@ -0,0 +1,9 @@ + + + +accesskey attribute with duplicate key labels + + +foo + + diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/accesskey/multi-character-key-label-novalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/accesskey/multi-character-key-label-novalid.html new file mode 100644 index 0000000000..303e1ea92e --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/accesskey/multi-character-key-label-novalid.html @@ -0,0 +1,9 @@ + + + +accesskey attribute with multi-character key label + + +foo + + diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/data/no-characters-after-hyphen-novalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/data/no-characters-after-hyphen-novalid.html new file mode 100644 index 0000000000..b30b1f9a71 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/data/no-characters-after-hyphen-novalid.html @@ -0,0 +1,4 @@ + + +starts with the string "data-", has at least one character after the hyphen, is XML-compatible, and contains no uppercase ASCII letters +

diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/data/not-xml-serializable-novalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/data/not-xml-serializable-novalid.html new file mode 100644 index 0000000000..7bcbfcbf5e --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/data/not-xml-serializable-novalid.html @@ -0,0 +1,4 @@ + + +starts with the string "data-", has at least one character after the hyphen, is XML-compatible, and contains no uppercase ASCII letters +

diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/data/value-isvalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/data/value-isvalid.html new file mode 100644 index 0000000000..96f0917d48 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/data/value-isvalid.html @@ -0,0 +1,7 @@ + + +valid data- + +

+ +

diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/lang/deprecated-tag-haswarn.html b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/deprecated-tag-haswarn.html new file mode 100644 index 0000000000..4fc1aaaafc --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/deprecated-tag-haswarn.html @@ -0,0 +1,9 @@ + + + +must be a valid BCP 47 language tag, or the empty string + + + + + diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/lang/empty-isvalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/empty-isvalid.html new file mode 100644 index 0000000000..f88354d019 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/empty-isvalid.html @@ -0,0 +1,10 @@ + + + + +must be a valid BCP 47 language tag, or the empty string + + +

+ + diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/lang/extlang-bad-novalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/extlang-bad-novalid.html new file mode 100644 index 0000000000..7908f08c3f --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/extlang-bad-novalid.html @@ -0,0 +1,9 @@ + + + +must be a valid BCP 47 language tag, or the empty string + + + + + diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-different-value-novalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-different-value-novalid.html new file mode 100644 index 0000000000..8e9f82fe51 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-different-value-novalid.html @@ -0,0 +1,10 @@ + + + + +When "xml:lang" is specified, the element must also have "lang" present with the same value + + +

+ + diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-only-novalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-only-novalid.html new file mode 100644 index 0000000000..7f4571ef12 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-only-novalid.html @@ -0,0 +1,10 @@ + + + + +When "xml:lang" is specified, the element must also have "lang" present with the same value + + +

+ + diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-same-isvalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-same-isvalid.html new file mode 100644 index 0000000000..71418a5f62 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-same-isvalid.html @@ -0,0 +1,10 @@ + + + + +When "xml:lang" is specified, the element must also have "lang" present with the same value + + +

+ + diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/role/unrecognized-role-name-novalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/role/unrecognized-role-name-novalid.html new file mode 100644 index 0000000000..b7b7f726b8 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/role/unrecognized-role-name-novalid.html @@ -0,0 +1,5 @@ + + +The attribute value MUST allow a token list as the value + + diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/spellcheck/value-bad-novalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/spellcheck/value-bad-novalid.html new file mode 100644 index 0000000000..6cbf57e787 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/spellcheck/value-bad-novalid.html @@ -0,0 +1,10 @@ + + + + +spellcheck="badvalue" + + +

+ + diff --git a/testing/web-platform/tests/conformance-checkers/html/attributes/spellcheck/value-isvalid.html b/testing/web-platform/tests/conformance-checkers/html/attributes/spellcheck/value-isvalid.html new file mode 100644 index 0000000000..2ce71c581b --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/spellcheck/value-isvalid.html @@ -0,0 +1,11 @@ + + + + +valid spellcheck + + +

+

+ + -- cgit v1.2.3