68912-1.html (356B)
1 <html> 2 <head> 3 <title>Crash TR.cells = null</title> 4 <script language="javascript"> 5 function crashme() 6 { 7 var elm = document.createElement('tr'); 8 9 elm.cells = null; 10 } 11 12 </script> 13 </head> 14 <body onload="crashme()"> 15 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> 22 23 </body> 24 </html>