mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-16 19:48:18 +00:00
new test case
This commit is contained in:
parent
1fb958f7ba
commit
34acf6b5b6
37
layout/html/tests/table/bugs/bug3517.html
Normal file
37
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
|
||||
|
Loading…
Reference in New Issue
Block a user