blob: bdd2ab46142839629ce5c1fd7a1e8a6f6d01444c (
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
|
<html>
<head>
<title>Crash TR.cells = null</title>
<script language="javascript">
function crashme()
{
var elm = document.createElement('tr');
elm.cells = null;
}
</script>
</head>
<body onload="crashme()">
<p>
This test case creates a TR element then tries to assign to the cells property
</p>
<p>
Crash
</p>
</body>
</html>
|