+ "// if this fails, output a 'hello' " + "if (true) " + "{ " + "//something good... " + "} "
+ "</script>" + "<body>" + "</body>" + "</html>");
parser.registerScanners();
parseAndAssertNodeCount(10);
assertType("fourth node", MetaTag.class, node[4]);
MetaTag metaTag = (MetaTag) node[4];
assertStringEquals("content", "text/html; charset=iso-8859-1", metaTag.getAttribute("CONTENT"));
}