blob: 8c5e10cb9c6261e0bf014b480caaaee077f9616c [file] [log] [blame]
core.html.normalize
#item input.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
one
<span style="color: red">
<span style="font-size: 24pt">
two
</span>
</span>
three
</body>
</html>
#item expected
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<p>
<span>one </span><span style="color: red; font-size: 24pt">two</span><span> three</span>
</p>
</body>
</html>