mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-13 11:10:13 +01:00
29 lines
410 B
HTML
29 lines
410 B
HTML
<html>
|
|
<head>
|
|
<title>Crash TR.cells = null</title>
|
|
<script language="javascript">
|
|
|
|
function crashme()
|
|
{
|
|
var elm = document.createElement('tr');
|
|
|
|
elm.cells = null;
|
|
alert('No Crash');
|
|
}
|
|
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<p>
|
|
This test case creates a TR element then tries to assign to the cells property
|
|
</p>
|
|
<p>
|
|
Crash
|
|
<button onclick="crashme()">TR.cells = null</button>
|
|
</p>
|
|
|
|
</body>
|
|
</html>
|