2007-12-17 07:40:36 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html class="reftest-wait">
|
|
|
|
<head>
|
|
|
|
<style>
|
|
|
|
table { background: white; }
|
|
|
|
col { visibility: collapse; }
|
|
|
|
td { color: black; }
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
function boom()
|
|
|
|
{
|
|
|
|
var col = document.getElementsByTagName("col")[0];
|
2017-01-30 10:10:22 +03:00
|
|
|
col.remove();
|
2007-12-17 07:40:36 +03:00
|
|
|
document.documentElement.className = "";
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
|
|
<table>
|
|
|
|
<col span="3">
|
|
|
|
<td>One</td>
|
|
|
|
<td>Two</td>
|
|
|
|
<td>Three</td>
|
|
|
|
</body>
|
|
|
|
</html>
|