diff options
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html/elements/mark/model-isvalid.html')
-rw-r--r-- | testing/web-platform/tests/conformance-checkers/html/elements/mark/model-isvalid.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/html/elements/mark/model-isvalid.html b/testing/web-platform/tests/conformance-checkers/html/elements/mark/model-isvalid.html new file mode 100644 index 000000000..20ba6d25d --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/elements/mark/model-isvalid.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title><m></title> +</head> +<body> + <!-- is structured inline --> + <p><mark class="class" lang="en">text</mark></p> + + <!-- is strictly inline --> + <p><dfn><mark class="class" 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> |