~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/interactive/bug110523.html

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html>
 
2
<head>
 
3
<title></title>
 
4
<script type="text/javascript">
 
5
 
 
6
function toggle(what) {         
 
7
        var adv = document.getElementById("it_guru");
 
8
        var ns = 'none';
 
9
        if (what.checked) {
 
10
                        ns= "table-row";
 
11
        }
 
12
        adv.style.display = ns;
 
13
}
 
14
 
 
15
</script></head><body >
 
16
<form action="http://localhost/">
 
17
Click me twice <input type="checkbox" onclick="toggle(this)">
 
18
<table>
 
19
<tbody>
 
20
<tr>
 
21
<td>Without the &lt;tbody&gt; tags Mozilla doesn't crash
 
22
                </td>
 
23
</tr>
 
24
</tbody>
 
25
<tr id="it_guru">
 
26
<td>I disappear
 
27
                </td>
 
28
</tr>
 
29
<tr>
 
30
<td>Without this row Mozilla doesn't crash
 
31
                </td>
 
32
</tr>
 
33
</table>
 
34
</form>
 
35
</body>
 
36
</html>
 
37