new test case
git-svn-id: svn://10.0.0.236/trunk@42878 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
37
mozilla/layout/html/tests/table/bugs/bug3517.html
Normal file
37
mozilla/layout/html/tests/table/bugs/bug3517.html
Normal file
@@ -0,0 +1,37 @@
|
||||
<title>Test</title>
|
||||
<style type="text/css">
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border: 1px solid black;
|
||||
}
|
||||
tr {
|
||||
border-top: 4 px solid red;
|
||||
}
|
||||
</style>
|
||||
|
||||
<body>
|
||||
|
||||
<table>
|
||||
<tbody id="mytable">
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
|
||||
|
||||
mytable = document.getElementById("mytable");
|
||||
|
||||
dump("before\n");
|
||||
var newrow = mytable.insertRow(0);
|
||||
dump("after row insert\n");
|
||||
var newcell = newrow.insertCell(0);
|
||||
dump("after cell insert\n");
|
||||
var text = document.createTextNode("here is content in the cell from the script appendRowGroupWithContent\n");
|
||||
newcell.appendChild(text);
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
@@ -50,6 +50,7 @@ file:///s:/mozilla/layout/html/tests/table/bugs/bug3260.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug3263.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug3309-1.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug3309-2.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug3517.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug3718.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug4093.html
|
||||
file:///s:/mozilla/layout/html/tests/table/bugs/bug4284.html
|
||||
|
||||
Reference in New Issue
Block a user