blob: 8d467f674acbfb3c57f1ae00b1a001bbe1608111 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<link href="../generic.css" rel="stylesheet"/>
<script type="text/javascript" src="OutlineTest.js"></script>
<script>
function performTest()
{
setupOutlineNumbering();
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();
// Modify the second heading, to verify that the change is reflected in the TOC
var heading = document.getElementsByTagName("h1")[1];
DOM_deleteCharacters(heading.lastChild,2,6);
PostponedActions_perform();
simplifyTOCs();
}
</script>
</head>
<body>
</body>
</html>