mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 11:23:07 +09:00
24 lines
332 B
HTML
24 lines
332 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>
|