bmlk%gmx.de c2a9780647 adding testcases to layout regression tests, npob
git-svn-id: svn://10.0.0.236/trunk@184977 18797224-902f-48f8-a5cc-f745e15eee43
2005-11-19 20:25:41 +00:00

17 lines
482 B
HTML

<html><head>
<title>Testcase Bug 178762 - Percentage height ignored for child inside table with table-layout:fixed</title>
<style>
table { width: 100%; height: 100%; border:1px solid red;
table-layout: fixed; position:relative; }
div{width:100%;height:100%;background-color:green;}
</style>
</head>
<body>
<table><tr><td>
<div>
The viewport should be filled directly with a green square. A resize of the window seems to fix the bug.
</div>
</td></tr></table>
</body>
</html>