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