tenfourfox/dom/html/crashtests/68912-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

25 lines
356 B
HTML

<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>