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