blob: fe86aff85756ca5adf379166b06bd80d230ab4bc [file] [log] [blame]
core.html.normalize
#item input.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
no parent
<p>paragraph</p>
<section>
<p>section, paragraph</p>
</section>
<section>
<section>
<p>section, section, paragraph</p>
</section>
</section>
<section>section</section>
<section>
<section>section, section</section>
</section>
</body>
</html>
#item expected
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<p>
<span>no parent</span>
</p>
<p>
<span>paragraph</span>
</p>
<p>
<span>section, paragraph</span>
</p>
<p>
<span>section, section, paragraph</span>
</p>
<p>
<span>section</span>
</p>
<p>
<span>section, section</span>
</p>
</body>
</html>