Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / float-remove-above-line-2.html
blob05a8abd467cbce6285a3a9eef082d68f955bc4dc
1 <p>
2 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>
3 Webkit Nightly Build crashes when visiting i has a hotdog</i>.
4 </p>
5 <p>
6 The test passes if it does not crash.
7 </p>
8 <div>
9 foo<br><div id="float-1" style="float: left;"></div><br>
10 <div id="float-2" style="float: right;"></div>
11 </div>
12 <script>
13 if (window.testRunner)
14 testRunner.dumpAsText();
16 document.body.offsetTop;
17 document.getElementById("float-1").style.display = "none";
18 document.body.offsetTop;
19 document.getElementById("float-2").style.display = "none";
20 </script>