diff options
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html/elements/samp')
-rw-r--r-- | testing/web-platform/tests/conformance-checkers/html/elements/samp/model-isvalid.html | 23 | ||||
-rw-r--r-- | testing/web-platform/tests/conformance-checkers/html/elements/samp/model-novalid.html | 25 |
2 files changed, 48 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> diff --git a/testing/web-platform/tests/conformance-checkers/html/elements/samp/model-novalid.html b/testing/web-platform/tests/conformance-checkers/html/elements/samp/model-novalid.html new file mode 100644 index 000000000..27d469d7a --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/elements/samp/model-novalid.html @@ -0,0 +1,25 @@ +<!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> + + <!-- cannot contain structured inline --> + <p><samp>text <ul><li>list</li></ul> <em>elem</em></samp></p> +</body> +</html> |