blob: 614c87d908f04d37f853e66c251992443e09c03e [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="OutlineTest.js"></script>
<script>
function performTest()
{
Outline_init();
if (Outline_detectSectionNumbering())
setupOutlineNumbering();
PostponedActions_perform();
var two = document.getElementById("two");
var table = DOM_createElement(document,"TABLE");
var caption = DOM_createElement(document,"CAPTION");
DOM_appendChild(table,caption);
DOM_appendChild(caption,DOM_createTextNode(document,""));
DOM_insertBefore(document.body,table,two);
PostponedActions_perform();
}
</script>
</head>
<body>
<p>Reference <a href="#one">x</a></p>
<p>Reference <a href="#two">x</a></p>
<p>Reference <a href="#three">x</a></p>
<table id="one"><caption>Table 4</caption></table>
<table id="two"><caption>Table 4</caption></table>
<table id="three"><caption>Table 4</caption></table>
<p>Reference <a href="#one">x</a></p>
<p>Reference <a href="#two">x</a></p>
<p>Reference <a href="#three">x</a></p>
</body>
</html>