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