diff options
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/xhtml/elements/strong/007-isvalid.xhtml')
-rw-r--r-- | testing/web-platform/tests/conformance-checkers/xhtml/elements/strong/007-isvalid.xhtml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/xhtml/elements/strong/007-isvalid.xhtml b/testing/web-platform/tests/conformance-checkers/xhtml/elements/strong/007-isvalid.xhtml new file mode 100644 index 000000000..e04821496 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/xhtml/elements/strong/007-isvalid.xhtml @@ -0,0 +1,20 @@ +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <title><strong></title> +</head> +<body> + <!-- is structured inline --> + <p><strong class="class" xml:lang="en">text</strong></p> + + <!-- is strictly inline --> + <p><dfn><strong class="class" xml:lang="en">text</strong></dfn></p> + + <!-- can be empty --> + <p>text <strong></strong></p> + <p>text <dfn><strong></strong></dfn></p> + + <!-- can contain interactive --> + <p><strong><a>text</a></strong></p> + <p><dfn><strong><a>text</a></strong></dfn></p> +</body> +</html> |