Files
Mozilla/mozilla/layout/html/tests/block/bugs/55874.html
(no author) d368a405db This commit was manufactured by cvs2svn to create branch
'MOZILLA_1_8_0_BRANCH'.

git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_0_BRANCH@185757 18797224-902f-48f8-a5cc-f745e15eee43
2005-12-07 05:54:01 +00:00

29 lines
544 B
HTML

<html>
<head>
<style>
IMG, Input, Textarea {
width: 50px;
height: 25%;
border: 1px solid black;
}
DIV, TABLE {
height: 400px;
width: 400px;
border: 1px solid grey;
}
</style>
</head>
<body>
<h1>children of the body</h1>
<img> <input> <textarea></textarea>
<h1>children of a div with height=400px</h1>
<div>
<img> <input> <textarea></textarea>
</div>
<h1>children of a table with height=400px</h1>
<table><tr><td>
<img> <input> <textarea></textarea>
</td></tr></table>
</body></html>