summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/abspos/remove-block-between-inline-and-abspos.html
blob: 977f063bcaf6a6f8c013dbd31de597dbacde5e9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<title>Removing block between inline and float should put the two on the same line</title>
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/CSS22/visuren.html#absolute-positioning" title="9.6 Absolute positioning">
<link rel="match" href="../../reference/ref-filled-green-200px-square.html">
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<!-- This is a block with block children, so inlines need to be wrapped inside
     anonymous blocks. A float and out-of-flow positioned box is neutral here,
     in that it can either live among block children OR among inline
     children. If it is (or becomes) sibling of an inline child, though, it
     should be wrapped inside the same anonymous block as the inline, or layout
     will be wrong. -->
<div style="width:200px; background:red;">
  <div style="height:50px; background:green;"></div>
  <div style="display:inline-block; vertical-align:top; width:100px; height:150px; background:green;"></div>
  <div id="removeMe" style="height:100px;"></div>
  <span style="position:absolute; width:100px; height:150px; background:green;"></span>
</div>
<script>
  document.body.offsetTop; // Trigger layout.
  document.getElementById("removeMe").style.display = "none";
</script>