mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
38 lines
696 B
HTML
38 lines
696 B
HTML
<html>
|
|
<head>
|
|
<title></title>
|
|
<script type="text/javascript">
|
|
|
|
function toggle(what) {
|
|
var adv = document.getElementById("it_guru");
|
|
var ns = 'none';
|
|
if (what.checked) {
|
|
ns= "table-row";
|
|
}
|
|
adv.style.display = ns;
|
|
}
|
|
|
|
</script></head><body >
|
|
<form action="http://localhost/">
|
|
Click me twice <input type="checkbox" onclick="toggle(this)">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td>Without the <tbody> tags Mozilla doesn't crash
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tr id="it_guru">
|
|
<td>I disappear
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Without this row Mozilla doesn't crash
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|