mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
26 lines
441 B
HTML
26 lines
441 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<style>
|
||
|
table { background: white; }
|
||
|
col { background: green; }
|
||
|
td { color: white; }
|
||
|
</style>
|
||
|
<script>
|
||
|
function boom()
|
||
|
{
|
||
|
var col = document.getElementsByTagName("col")[0];
|
||
|
col.parentNode.removeChild(col);
|
||
|
document.documentElement.className = "";
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="boom();">
|
||
|
<table>
|
||
|
<col span="3">
|
||
|
<td>One</td>
|
||
|
<td>Two</td>
|
||
|
<td>Three</td>
|
||
|
</body>
|
||
|
</html>
|