Bug 385823 - reftests (files I forgot to include in prev checkin) r+sr=dbaron

This commit is contained in:
dholbert@cs.stanford.edu 2007-11-06 14:49:05 -08:00
Родитель b4140077cc
Коммит 427c4337a3
6 изменённых файлов: 70 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,11 @@
<html>
<body>
<table style="background: lightblue;" cellspacing="0" cellpadding="0">
<tr><td>
<img src="mozilla-banner.gif"/>
<br/>
Here's some text following the image.
</tr></td>
</table>
</body>
</html>

Просмотреть файл

@ -0,0 +1,11 @@
<html>
<body>
<table style="background: lightblue;" cellspacing="0" cellpadding="0">
<tr><td>
<img src="mozilla-banner.gif" height="100%"/>
<br/>
Here's some text following the image.
</tr></td>
</table>
</body>
</html>

Просмотреть файл

@ -0,0 +1,9 @@
<html>
<body>
<table cellspacing="0" cellpadding="0" height="70px">
<tr><td>
<img src="mozilla-banner.gif" height="70px"/>
</tr></td>
</table>
</body>
</html>

Просмотреть файл

@ -0,0 +1,9 @@
<html>
<body>
<table cellspacing="0" cellpadding="0" height="70px">
<tr><td>
<img src="mozilla-banner.gif" height="100%"/>
</tr></td>
</table>
</body>
</html>

Просмотреть файл

@ -0,0 +1,14 @@
<html>
<body>
<table cellspacing="0" cellpadding="0" height="70px">
<tr><td>
<img src="mozilla-banner.gif" height="100%"/>
<br/>
<!-- Add some text content, but make it small enough not
to push us to over 70px before we scale the image.
This text should end up hidden behind the image. -->
<font style="font-size: 20%">text text</font>
</tr></td>
</table>
</body>
</html>

Просмотреть файл

@ -0,0 +1,16 @@
<html>
<body>
<!-- Specify a width on the table, to make sure it's wide enough
to hold the scaled image. -->
<table cellspacing="0" cellpadding="0" height="70px" width="724px">
<tr><td>
<img src="mozilla-banner.gif" height="100%"/>
<br/>
<!-- Add some text content, but make it small enough not
to push us to over 70px before we scale the image.
This text should end up hidden behind the image. -->
<font style="font-size: 20%">text text</font>
</tr></td>
</table>
</body>
</html>