WebCore/manual-tests/first-line-style-crash.html
changeset 0 4f2f89ce4247
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebCore/manual-tests/first-line-style-crash.html	Fri Sep 17 09:02:29 2010 +0300
@@ -0,0 +1,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>