blob: 840ce1f4388035dbb1dd8d570b57889616855483 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
function performTest()
{
var first = document.getElementById("first");
var second = document.getElementById("second");
Hierarchy_ensureInlineNodesInParagraph(first,true);
Hierarchy_ensureInlineNodesInParagraph(second,true);
}
</script>
</head>
<body>
<br id="first">
One
<br>
Two
<br>
<p>Explicit paragraph</p>
<br id="second">
Three
<br>
Four
<br>
</body>
</html>