blob: e084d856a0d15b2b38ac697f7ae5e908c012bcbf [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>
One
<br>
Two
<br id="first">
<p>Explicit paragraph</p>
<br>
Three
<br>
Four
<br id="second">
</body>
</html>