diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/conformance-checkers/html/obsolete | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html/obsolete')
12 files changed, 122 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/html/obsolete/acronym-novalid.html b/testing/web-platform/tests/conformance-checkers/html/obsolete/acronym-novalid.html new file mode 100644 index 0000000000..c00eff544c --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/obsolete/acronym-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> +<title>the "acronym" element is obsolete</title> +<meta charset=utf-8> +</head> +<body> +<acronym>baz</acronym> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html/obsolete/applet-novalid.html b/testing/web-platform/tests/conformance-checkers/html/obsolete/applet-novalid.html new file mode 100644 index 0000000000..94bb0165df --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/obsolete/applet-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> +<title>the "applet" element is obsolete</title> +<meta charset=utf-8> +</head> +<body> +<applet>baz</applet> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html/obsolete/basefont-novalid.html b/testing/web-platform/tests/conformance-checkers/html/obsolete/basefont-novalid.html new file mode 100644 index 0000000000..7f329d5cac --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/obsolete/basefont-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> +<title>the "basefont" element is obsolete</title> +<meta charset=utf-8> +</head> +<body> +<basefont> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html/obsolete/big-novalid.html b/testing/web-platform/tests/conformance-checkers/html/obsolete/big-novalid.html new file mode 100644 index 0000000000..90868cc89e --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/obsolete/big-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> +<title>the "big" element is obsolete</title> +<meta charset=utf-8> +</head> +<body> +<big>baz</big> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html/obsolete/center-novalid.html b/testing/web-platform/tests/conformance-checkers/html/obsolete/center-novalid.html new file mode 100644 index 0000000000..83d3cc28d1 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/obsolete/center-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> +<title>the "center" element is obsolete</title> +<meta charset=utf-8> +</head> +<body> +<center>baz</center> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html/obsolete/dir-novalid.html b/testing/web-platform/tests/conformance-checkers/html/obsolete/dir-novalid.html new file mode 100644 index 0000000000..072f1c6196 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/obsolete/dir-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> +<title>the "dir" element is obsolete</title> +<meta charset=utf-8> +</head> +<body> +<dir></dir> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html/obsolete/font-novalid.html b/testing/web-platform/tests/conformance-checkers/html/obsolete/font-novalid.html new file mode 100644 index 0000000000..450f27ad49 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/obsolete/font-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> +<title>the "font" element is obsolete</title> +<meta charset=utf-8> +</head> +<body> +<font>baz</font> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html/obsolete/frameset-novalid.html b/testing/web-platform/tests/conformance-checkers/html/obsolete/frameset-novalid.html new file mode 100644 index 0000000000..d7de332fee --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/obsolete/frameset-novalid.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> +<title>the "frameset" element is obsolete</title> +<meta charset=utf-8> +</head> +<frameset> +<frame src="url"> +<frame src="url2"> +</frameset> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html/obsolete/noframes-novalid.html b/testing/web-platform/tests/conformance-checkers/html/obsolete/noframes-novalid.html new file mode 100644 index 0000000000..84699e67b3 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/obsolete/noframes-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> +<title>the "noframes" element is obsolete</title> +<meta charset=utf-8> +</head> +<body> +<noframes>baz</noframes> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html/obsolete/profile-novalid.html b/testing/web-platform/tests/conformance-checkers/html/obsolete/profile-novalid.html new file mode 100644 index 0000000000..6b4a4f39e8 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/obsolete/profile-novalid.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head profile="http://www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/"> +<title>the profile attribute on the head element is obsolete</title> +<meta charset=utf-8> +</head> +<body> +<p>This page contains a <code>head</code> element with an obsolete +<code>profile</code> attribute. It should trigger a validation error.</p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html/obsolete/strike-novalid.html b/testing/web-platform/tests/conformance-checkers/html/obsolete/strike-novalid.html new file mode 100644 index 0000000000..0a4c770468 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/obsolete/strike-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> +<title>the "strike" element is obsolete</title> +<meta charset=utf-8> +</head> +<body> +<strike>baz</strike> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html/obsolete/tt-novalid.html b/testing/web-platform/tests/conformance-checkers/html/obsolete/tt-novalid.html new file mode 100644 index 0000000000..ee4942dccb --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/obsolete/tt-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> +<title>the "tt" element is obsolete</title> +<meta charset=utf-8> +</head> +<body> +<tt>baz</tt> +</body> +</html> |