blob: 2985dbc647d0d73fbfd4bea6656bb3a68c8a83fb [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 id="first">
Two
<br>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<br>
Three
<br id="second">
Four
<br>
</body>
</html>