createParser(testHTML);
parseAndAssertNodeCount(7);
// The node should be an Tag
assertTrue("1st Node should be a Tag", node[0] instanceof Tag);
Tag tag = (Tag) node[0];
assertStringEquals("toHTML()", "<MYTAG EFGH=\"\" ABCD=\"\" MNOP=\"\" IJKL=\"\">", tag.toHtml());
assertTrue("2nd Node should be a Tag", node[1] instanceof Tag);
assertTrue("5th Node should be a Tag", node[4] instanceof Tag);
tag = (Tag) node[1];
assertEquals("Raw String of the tag", "<TITLE>", tag.toHtml());
tag = (Tag) node[4];