blob: 15a0579a6e439c966ef30d4d9eb1fa78047f3139 [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_insertCharacters(heading.lastChild,2,"XYZ");
PostponedActions_perform();
simplifyTOCs();
}
</script>
</head>
<body>
</body>
</html>