blob: fd6ee01d4e1a47930c0069062d93f27962488cb9 (
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
|
<!DOCTYPE html>
<html>
<body>
This test verifies that no crash occurs.
<font>
<div>
<table>
<tbody>
<tr>
<td>
<b>
<font>
<p>
</font>
</b>
</td>
</tr>
</tbody>
</table>
<script>
var i = document.body.offsetTop; // this forces a layout
</script>
</font>
<div id="console"></div>
</body>
<script>
if (window.testRunner)
testRunner.dumpAsText();
document.getElementById("console").appendChild(document.createTextNode("PASS"));;
</script>
</html>
|