blob: dbd71fa5dbe7698493f86fec810e966b8f2a37a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<head>
<title>Test for http://bugs.webkit.org/show_bug.cgi?id=14202</title>
</head>
<body>
<table style="border-collapse: collapse;">
<caption style="background-color: green; height: 50px;"></caption>
<tr>
<td id="target" style="background-color: green; height: 50px; width: 50px;">
</td>
</tr>
</table>
<script>
document.body.offsetTop;
document.getElementById('target').style.width = "100px";
</script>
</body>
</html>
|