visibilityCollapseSupported = {
const table = document.createElement("table"),
tr = document.createElement("tr"),
td = document.createElement("td");
tr.style.height = "200px";
tr.style.visibility = "collapse";
table.appendChild(tr);
tr.appendChild(td);
document.body.appendChild(table);
const supported = table.scrollHeight == 0;
document.body.removeChild(table);
return supported;
}