System.out.println("=== Inspecting the table node ===");
inspect(table);
// at the time of writing there was only one row
nsIDOMHTMLCollection rows = table.getRows();
nsIDOMHTMLTableRowElement row = this.asTableRow(rows.item(0L));
System.out.println("=== Inspecting the table row node ===");
inspect(row);
System.out.println("=== Listing the menu ===");