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