diff options
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html/attributes/spellcheck')
2 files changed, 21 insertions, 0 deletions
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 000000000..6cbf57e78 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/spellcheck/value-bad-novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>spellcheck="badvalue"</title> +</head> +<body> +<p spellcheck="badvalue"></p> +</body> +</html> 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 000000000..2ce71c581 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/attributes/spellcheck/value-isvalid.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>valid spellcheck</title> +</head> +<body> +<p spellcheck="true"></p> +<p spellcheck="false"></p> +</body> +</html> |