diff options
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html/elements/h1/model-isvalid.html')
-rw-r--r-- | testing/web-platform/tests/conformance-checkers/html/elements/h1/model-isvalid.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/html/elements/h1/model-isvalid.html b/testing/web-platform/tests/conformance-checkers/html/elements/h1/model-isvalid.html new file mode 100644 index 000000000..3e92f42e5 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/elements/h1/model-isvalid.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title><h1></title> +</head> +<body> + <!-- is block --> + <h1 class="class" id="id" lang="en">text</h1> + + <!-- can contain strictly inline --> + <h1>text <em>elem</em></h1> + + <!-- can contain interactive --> + <h1><a>text</a></h1> +</body> +</html> |