// String, String, String
attributes.add (new PageAttribute ("frameborder", "= ", "no"));
attributes.add (new PageAttribute (" "));
// String String, String, char
attributes.add (new PageAttribute ("name", "=", "topFrame", '"'));
tag = new TagNode (null, 0, 0, attributes);
html = "<wombat label=\"The civil war.\" frameborder= no name=\"topFrame\">";
assertStringEquals ("tag contents", html, tag.toHtml ());
}