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