more test cases

git-svn-id: svn://10.0.0.236/trunk@42886 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
karnaze%netscape.com
1999-08-10 02:39:55 +00:00
parent 20d0a60f5e
commit 25ee69fdf0
4 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html lang="en-US">
<head>
<title>CSS2 table display types</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="copyright" href="/~dbaron/legal.html">
<style type="text/css">
.t { display: table; }
.trow { display: table-row; }
.tcol { display: table-column; }
.tcg { display: table-column-group; }
.tcell { display: table-cell; }
</style>
</head>
<body>
<h2>table-column-group</h2>
<div class="t">
<div class="tcg">
<div class="tcol"></div>
<div class="tcol"></div>
</div>
<div class="trow">
<div class="tcell">white</div>
<div class="tcell">white</div>
</div>
</div>

View File

@@ -0,0 +1,19 @@
<html>
<head>
<style>
.t { displayx: table-column-group; }
</style>
</head>
<body>
<p class="t">
</body>
</html>

View File

@@ -0,0 +1,25 @@
<title>Test</title>
<style type="text/css">
table { border-collapse: collapse; }
</style>
<body>
<table border>
<tbody id="mytable">
</tbody>
</table>
<script type="text/javascript">
mytable = document.getElementById("mytable");
dump("before\n");
var newrow = mytable.insertRow(0);
dump("after\n");
</script>
</body>

View File

@@ -78,7 +78,10 @@ file:///s:/mozilla/layout/html/tests/table/bugs/bug6933.html
file:///s:/mozilla/layout/html/tests/table/bugs/bug709.html
file:///s:/mozilla/layout/html/tests/table/bugs/bug7243.html
file:///s:/mozilla/layout/html/tests/table/bugs/bug727.html
file:///s:/mozilla/layout/html/tests/table/bugs/bug8032-1.html
file:///s:/mozilla/layout/html/tests/table/bugs/bug8032-2.html
file:///s:/mozilla/layout/html/tests/table/bugs/bug8950.html
file:///s:/mozilla/layout/html/tests/table/bugs/bug9024.html
file:///s:/mozilla/layout/html/tests/table/bugs/bug963.html