blob: fb2da0848cd1451914b319e0e94a7c6453def829 [file] [log] [blame]
<html>
<head>
<title></title>
<style type="text/css">
<!--
#a
{
background-color:background;
}
-->
</style>
</head>
<body>
<table id="a">
<tr>
<td>This table should NOT be visible</td>
</tr>
</table>
<table id="b" style="background-color:background;">
<tr>
<td>This table should NOT be visible</td>
</tr>
</table>
<script language="JavaScript" type="text/javascript">
<!--
document.getElementById("a").style.visibility = "hidden";
document.getElementById("b").style.visibility = "hidden";
//-->
</script>
</body>
</html>