assertEquals(16, doc.$("td.NavBarCell1").size());
assertEquals(2, doc.$("table td.NavBarCell1Rev").size());
final StringBuilder sb = new StringBuilder();
doc.$("td.NavBarCell1").each(new JerryFunction() {
public boolean onNode(Jerry $this, int index) {
sb.append("---\n");
sb.append($this.text().trim());
sb.append('\n');
return true;