blob: 4758b1ee4fa9fba4b264adf5ac5cc2c8321ae684 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html>
<head>
<link rel="stylesheet" type="text/css" href="resources/aFileThatProbablyDoesNotExist.css">
<style type="text/css">
div:first-line { color: green; }
</style>
</head>
<body>
<p>
Regression test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=8760">http://bugs.webkit.org/show_bug.cgi?id=8760</a>
crash (hang?) on subtlegradient.com article page</i>.
</p>
<p>
No crash means test PASS.
</p>
<hr>
<div>
<span id="t">Lorem ipsum</span>
</div>
<script type="text/javascript">
document.getElementById("t").offsetTop;
</script>
</body>
|