This is a test file to insure that everything is working well.
<!DOCTYPE HTML> <html> <body> <div>Allowed readers:</div> <ul> <li>John</li> <li>Bob</li> </ul> <script> // and this script element will be listed too! var childNodes = document.body.childNodes for(var i=0; i<childNodes.length; i++) { alert(childNodes[i]) } </script> </body> </html>
function test() : String { return 10; }