blob: a8378a702938e384b3c793027e827254273f2c2f [file] [log] [blame]
core.html.normalize
#item input.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
no parent
<p>paragraph</p>
<footer>
<p>footer, paragraph</p>
</footer>
<footer>
<footer>
<p>footer, footer, paragraph</p>
</footer>
</footer>
<footer>footer</footer>
<footer>
<footer>footer, footer</footer>
</footer>
</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>footer, paragraph</span>
</p>
<p>
<span>footer, footer, paragraph</span>
</p>
<p>
<span>footer</span>
</p>
<p>
<span>footer, footer</span>
</p>
</body>
</html>