diff options
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html/elements/div/model-novalid.html')
-rw-r--r-- | testing/web-platform/tests/conformance-checkers/html/elements/div/model-novalid.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/html/elements/div/model-novalid.html b/testing/web-platform/tests/conformance-checkers/html/elements/div/model-novalid.html new file mode 100644 index 000000000..a7d8e4f60 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/elements/div/model-novalid.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title><div></title> +</head> +<body> + <!-- is not strictly inline --> + <p><dfn>text + <div> + <p>text</p> + </div> + </dfn></p> + + <!-- is not structured inline --> + <p>text + <div> + <p>text</p> + </div> + </p> + + <!-- cannot contain inline --> + <div> + some <em>text</em> + </div> +</body> +</html> |