blob: 3014bd3ba35ceb78964f5db6a0de84cdb70e4ca1 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<link href="../generic.css" rel="stylesheet"/>
<script type="text/javascript" src="OutlineTest.js"></script>
<script>
function performTest()
{
Outline_init();
PostponedActions_perform();
// Create a series of headings
createTestSections([2,[2,2]]);
// Add a table of contents
Selection_set(document.body,0,document.body,0);
Outline_insertTableOfContents();
PostponedActions_perform();
// Delete all sections
var current = document.getElementsByTagName("h1")[0];
var next;
for (; current != null; current = next) {
next = current.nextSibling;
DOM_deleteNode(current);
}
PostponedActions_perform();
}
</script>
</head>
<body>
</body>
</html>