mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
38 lines
551 B
HTML
38 lines
551 B
HTML
<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>
|