Bug 1494333 - index crons just like artifacts r=Callek
[gecko.git] / dom / html / crashtests / 68912-1.html
blobbdd2ab46142839629ce5c1fd7a1e8a6f6d01444c
1 <html>
2 <head>
3 <title>Crash TR.cells = null</title>
4 <script language="javascript">
5 function crashme()
7 var elm = document.createElement('tr');
9 elm.cells = null;
12 </script>
13 </head>
14 <body onload="crashme()">
16 <p>
17 This test case creates a TR element then tries to assign to the cells property
18 </p>
19 <p>
20 Crash
21 </p>
23 </body>
24 </html>