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