diff options
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html/elements/sup/model-isvalid.html')
-rw-r--r-- | testing/web-platform/tests/conformance-checkers/html/elements/sup/model-isvalid.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/html/elements/sup/model-isvalid.html b/testing/web-platform/tests/conformance-checkers/html/elements/sup/model-isvalid.html new file mode 100644 index 000000000..af3642f5e --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/elements/sup/model-isvalid.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title><sup></title> +</head> +<body> + <!-- is structured inline --> + <p><sup class="class" lang="en">text</sup></p> + + <!-- is strictly inline --> + <p><dfn><sup class="class" lang="en">text</sup></dfn></p> + + <!-- can be empty --> + <p>text <sup></sup></p> + <p>text <dfn><sup></sup></dfn></p> + + <!-- can contain interactive --> + <p><sup><a>text</a></sup></p> + <p><dfn><sup><a>text</a></sup></dfn></p> + + <!-- cannot contain structured inline --> +</body> +</html> |