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