mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|