Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / inline / inline-empty-block-continuation-remove.html
1 <!DOCTYPE html>
2 <html>
3 <body>
4 WebKit Bug 88022 - Cleanup empty anonymous block continuation.<br />
5 Test passes if you see orange and purple text should be on the same line.
6 <a id="target"><b style="color: orange">ONE</b><b id="two" style="color: purple">TWO</b></a>
7 <script>
8 target = document.getElementById("target");
9 two = document.getElementById("two");
10
11 target.offsetTop; // force a layout
12 two.style.display = "block";
13 target.offsetTop; // force a layout
14 two.style.display = "inline";
15 </script>
16 </body>
17 </html>