blob: d6ffe8113558fde21c3bd95874409913680df627 [file] [log] [blame]
core.html.normalize
#item input.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<p><span id="word1">one <b>two</b> three</span></p>
</body>
</html>
#item expected
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<p>
<span id="word1">one </span><span style="font-weight: bold">two</span><span> three</span>
</p>
</body>
</html>