diff options
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html/attributes/lang')
6 files changed, 58 insertions, 0 deletions
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 000000000..4fc1aaaaf --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/deprecated-tag-haswarn.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> +<head> +<title>must be a valid BCP 47 language tag, or the empty string</title> +<meta charset=utf-8> +</head> +<body lang=mo><!-- deprecated subtag --> +</body> +</html> 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 000000000..f88354d01 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/empty-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang=""> +<head> +<meta charset=utf-8> +<title>must be a valid BCP 47 language tag, or the empty string</title> +</head> +<body> +<p></p> +</body> +</html> 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 000000000..7908f08c3 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/extlang-bad-novalid.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> +<head> +<title>must be a valid BCP 47 language tag, or the empty string</title> +<meta charset=utf-8> +</head> +<body lang=bat-smg><!-- bad extlang --> +</body> +</html> 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 000000000..8e9f82fe5 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-different-value-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html xml:lang="en" lang="fr"> +<head> +<meta charset=utf-8> +<title>When "xml:lang" is specified, the element must also have "lang" present with the same value</title> +</head> +<body> +<p></p> +</body> +</html> 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 000000000..7f4571ef1 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-only-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html xml:lang="en"> +<head> +<meta charset=utf-8> +<title>When "xml:lang" is specified, the element must also have "lang" present with the same value</title> +</head> +<body> +<p></p> +</body> +</html> 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 000000000..71418a5f6 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/lang/xmllang-same-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html xml:lang="en" lang="en"> +<head> +<meta charset=utf-8> +<title>When "xml:lang" is specified, the element must also have "lang" present with the same value</title> +</head> +<body> +<p></p> +</body> +</html> |