-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conformance checker tests for <dl> and <div> in <dl>
Tests for whatwg/html#1945
- Loading branch information
1 parent
a83d133
commit 246785d
Showing
37 changed files
with
266 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid article-in-dt</title> | ||
<dl><dt><article><h2>text</h2></article><dd>text</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid aside-in-dt</title> | ||
<dl><dt><aside><h2>text</h2></aside><dd>text</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid dd-in-template</title> | ||
<dl><dt>1</dt><template><dd>a</dd></template></dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid div-contains-dl</title> | ||
<dl><div><dl></dl></div><dt>2<dd>b</div></dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid div-contains-text</title> | ||
<dl><div>x</div><dt>2<dd>b</div></dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid div-splitting-groups-2</title> | ||
<dl><div><dt>1<dd>a</div><div><dd>b</div></dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid div-splitting-groups-3</title> | ||
<dl><div><dt>1</div><div><dt>2<dd>b</div></dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid div-splitting-groups</title> | ||
<dl><div><dt>1</div><div><dd>a</div></dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid dl-contains-dl</title> | ||
<dl><dt>1<dd>a</dd><dl></dl></dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid dl-contains-text-2</title> | ||
<dl><dt>1<dd>a</dd>x</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid dl-contains-text</title> | ||
<dl><dt>1</dt>x</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid dl-in-p</title> | ||
<p><dl><dt>text<dd>text</dl></p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>valid dl</title> | ||
<template><dl><dt>text<dd>text</dl></template> <!-- parent-template-in-head --> | ||
<body> | ||
<dl><dt>text<dd><h1>text</h1></dl> <!-- h1-in-dd --> | ||
<dl><dt>text<dd><hgroup><h1>text</h1></hgroup></dl> <!-- hgroup-in-dd --> | ||
<dl><div><dt>1</dt><template></template><dd>a</div></dl> <!-- div-template-2 --> | ||
<dl><dt>text<dd><section><h2>text</h2></section></dl> <!-- section-in-dd --> | ||
<dl><div><dt>1<dd>a</div><script></script></dl> <!-- div-script --> | ||
<dl><dt>1<dd><dl><dt>2<dd>a</dl></dl> <!-- dl-in-dd --> | ||
<dl><dt><dd></dl> <!-- empty-dt-dd --> | ||
<dl><div><dt>1<dd>a</div><template></template></dl> <!-- div-template --> | ||
<dl><dt>text<dd>text</dl> <!-- basic --> | ||
<dl><script></script></dl> <!-- script --> | ||
<dl><div><dt>1<dd>a</div></dl> <!-- div-basic --> | ||
<dl><dt>1<dd>a<dt>2<dd>a<dd>b<dt>3<dt>4<dt>5<dd>a</dl> <!-- multiple-groups --> | ||
<dl><dt>text<dd><header>text</header></dl> <!-- header-in-dd --> | ||
<dl><dt><dl><dt>1<dd>a</dl><dd>b</dl> <!-- dl-in-dt --> | ||
<dl><dt>1</dt><script></script><dd>a</dl> <!-- dt-script-dd --> | ||
<dl></dl> <!-- empty --> | ||
<dl><div><dt>1<dd>a</div><div><dt>2<dd>a<dd>b</div><div><dt>3<dt>4<dt>5<dd>a</div></dl> <!-- div-multiple-groups --> | ||
<dl><div><dt>1</dt><script></script><dd>a</div></dl> <!-- div-script-2 --> | ||
<dl><dt>1</dt><template></template><dd>a</dl> <!-- dt-template-dd --> | ||
<dl><dt>text<dd><h6>text</h6></dl> <!-- h6-in-dd --> | ||
<dl><dt>text<dd><h2>text</h2></dl> <!-- h2-in-dd --> | ||
<dl><dt>text<dd><nav><h2>text</h2></nav></dl> <!-- nav-in-dd --> | ||
<dl><dt><p>1<p>1<dd>a</dl> <!-- p-in-dt --> | ||
<dl><dt>text<dd><article><h2>text</h2></article></dl> <!-- article-in-dd --> | ||
<dl><dt>text<dd><footer>text</footer></dl> <!-- footer-in-dd --> | ||
<dl><dt>text<dd><h4>text</h4></dl> <!-- h4-in-dd --> | ||
<dl><dt>text<dd><h5>text</h5></dl> <!-- h5-in-dd --> | ||
<dl><dt>text<dd><aside><h2>text</h2></aside></dl> <!-- aside-in-dd --> | ||
<dl><dt>text<dd><h3>text</h3></dl> <!-- h3-in-dd --> | ||
<dl><dt><a href='#'>1</a><dd><a href='#'>a</a></dl> <!-- interactive --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid dt-in-template</title> | ||
<dl><template><dt>1</dt></template><dd>a</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid empty-div-2</title> | ||
<dl><div></div><div><dt>2<dd>b</div></dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid empty-div</title> | ||
<dl><div></div></dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid first-dd</title> | ||
<dl><dd>a<dt>2<dd>b</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid footer-in-dt</title> | ||
<dl><dt><footer>text</footer><dd>text</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid h1-in-dt</title> | ||
<dl><dt><h1>text</h1><dd>text</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid h2-in-dt</title> | ||
<dl><dt><h2>text</h2><dd>text</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid h3-in-dt</title> | ||
<dl><dt><h3>text</h3><dd>text</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid h4-in-dt</title> | ||
<dl><dt><h4>text</h4><dd>text</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid h5-in-dt</title> | ||
<dl><dt><h5>text</h5><dd>text</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid h6-in-dt</title> | ||
<dl><dt><h6>text</h6><dd>text</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid header-in-dt</title> | ||
<dl><dt><header>text</header><dd>text</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid hgroup-in-dt</title> | ||
<dl><dt><hgroup><h1>text</h1></hgroup><dd>text</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid last-dt</title> | ||
<dl><dt>1<dd>a<dt>2</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid mixed-div-dt-dd</title> | ||
<dl><div><dt>1<dd>a</div><dt>2<dd>b</dd></dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid mixed-dt-dd-div</title> | ||
<dl><dt>1<dd>a</dd><div><dt>2<dd>b</div></dl> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid nav-in-dt</title> | ||
<dl><dt><nav><h2>text</h2></nav><dd>text</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid nested-divs</title> | ||
<dl><div><div><dt>1<dd>a</div></div></dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid only-dd</title> | ||
<dl><dd>a</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid only-dt</title> | ||
<dl><dt>1</dl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!DOCTYPE html> | ||
<meta charset=utf-8> | ||
<title>invalid section-in-dt</title> | ||
<dl><dt><section><h2>text</h2></section><dd>text</dl> |
Oops, something went wrong.