summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/399209-1.html
blob: 9216db0b14a4c4496e7966c0dd02593ef41f65ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!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.remove();
  document.documentElement.className = "";
}
</script>
</head>
<body onload="boom();">
<table>
  <col span="3">
  <td>One</td>
  <td>Two</td>
  <td>Three</td>
</body>
</html>