diff options
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html/elements/dl/model-isvalid.html')
-rw-r--r-- | testing/web-platform/tests/conformance-checkers/html/elements/dl/model-isvalid.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/html/elements/dl/model-isvalid.html b/testing/web-platform/tests/conformance-checkers/html/elements/dl/model-isvalid.html new file mode 100644 index 000000000..c7a5de96c --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html/elements/dl/model-isvalid.html @@ -0,0 +1,55 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Definition List: <dl> <dt> <dd></title> +</head> +<body> + <!-- is block --> + <dl class="class" id="id" lang="en"> + <dt class="class" id="id2" lang="en">text</dt> + <dd class="class" id="id3" lang="en">text</dd> + </dl> + + <!-- can be empty --> + <dl></dl> + <dl> + <dt></dt> + <dd></dd> + </dl> + + <!-- multiple groups, but always (dt+,dd+) --> + <dl> + <dt>text</dt> + <dd>more text</dd> + <dt>text</dt> + <dd>more text</dd> + <dd>more text</dd> + <dt>text</dt> + <dt>text</dt> + <dt>text</dt> + <dd>more text</dd> + </dl> + + <!-- dd can contain structured inline, dt strictly inline --> + <dl> + <dt>some <em>text</em></dt> + <dd>more <pre>text</pre></dd> + </dl> + + <!-- dd can contain blocks --> + <dl> + <dt>some <em>text</em></dt> + <dd> + <p>more</p> + <p>text</p> + </dd> + </dl> + + <!-- can contain interactive --> + <dl> + <dt>some <a>text</a></dt> + <dd>more <a>text</a></dd> + </dl> +</body> +</html> |