blob: 05a8abd467cbce6285a3a9eef082d68f955bc4dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<p>
Another test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=18722">https://bugs.webkit.org/show_bug.cgi?id=18722</a>
Webkit Nightly Build crashes when visiting i has a hotdog</i>.
</p>
<p>
The test passes if it does not crash.
</p>
<div>
foo<br><div id="float-1" style="float: left;"></div><br>
<div id="float-2" style="float: right;"></div>
</div>
<script>
if (window.testRunner)
testRunner.dumpAsText();
document.body.offsetTop;
document.getElementById("float-1").style.display = "none";
document.body.offsetTop;
document.getElementById("float-2").style.display = "none";
</script>
|