karnaze%netscape.com a30b39396c new regression tests not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@118409 18797224-902f-48f8-a5cc-f745e15eee43
2002-04-06 23:55:54 +00:00

75 lines
1.3 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style type="text/css">
table {
border-collapse: collapse;
}
td {
border: 1px solid blue;
}
</style>
</head>
<body onLoad=handleOnLoad()>
The table below has two rows with blue borders.<br>
If we add a new similar row using DHTML the borders disappear. They may although
show up in small bits and pieces depending on what you do hereafter (using the
menus, opening other windows, and various other things).<p>
<table id="myTable">
<tr>
<th>Column-A</th>
<th>Column-B</th>
<th>Column-C</th>
</tr>
<tr>
<td>A1</td>
<td>A2</td>
<td>A3</td>
</tr>
<tr>
<td>B1</td>
<td>B2</td>
<td>B3</td>
</tr>
</table>
<script>
function handleOnLoad()
{
var table = document.getElementById("myTable");
alert("Now we add a new row");
// Add a new row at the end of the table
var newRow = table.insertRow(3);
var cell;
for (var i=0 ; i<3 ; ++i)
{
if (0)
{
cell = document.createElement("TD");
cell.innerHTML = "C"+(i+1);
newRow.appendChild(cell);
}
else
{
cell = newRow.insertCell(i);
cell.innerHTML = "C"+(i+1);
}
}
}
</script>
</body>
</html>