summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/relative-grandchild.html
blob: 9c1b7d54e1f568e13e656a3bc57a840cdc93bcf2 (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1138504">
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="width: 100px; height: 100px; background: red;"></div>
<div style="display: grid; width: 100px; height: 100px;">
  <div>
    <div style="position: relative; height: 100px; background: green; top: -100%;"></div>
  </div>
</div>