blob: 3ef6ba9b37a3f715a11f7385c79f887310e61871 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<!DOCTYPE html>
<html>
<head>
<style>
table {
vertical-align:baseline;
}
td {
vertical-align:baseline;
border: 1px solid #f90;
}
#img1 {
width: 100px;
height: 150px;
background-color: green;
}
#img2 {
background-color: green;
}
</style>
</head>
<body>
<p> https://bugs.webkit.org/show_bug.cgi?id=108357: The bottom of the two green boxes should be aligned and there should be no space above the first box.</p>
<table>
<tbody>
<tr>
<td><img id="img1" src="resources/greenbox-100px.png"></td><td><img id="img2" src="resources/greenbox.png"></td>
</tr>
</tbody>
</table>
<script>
var img = document.getElementById("img2");
img.src = "resources/greenbox-100px.png";
</script>
</body>
</html>
|