summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-position/position-absolute-root-element-grid.html
blob: 1a813b3a2301f02f833d1b82fd0abb0a91096eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
  <meta charset="UTF-8">
  <title>CSS Position: Box inset properties & position:absolute grid container as the root element</title>
  <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/>
  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
  <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
  <link rel="help" href="https://drafts.csswg.org/css-position-3/#insets">
  <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1584890">
  <link rel="match" href="position-absolute-root-element-ref.html">
  <meta name="assert" content="This test verifies the box inset properties on a position:absolute grid container root element.">

  <style>
  html {
    display: grid;
    position: absolute;
    left: 10px;
    right: 20px;
    top: 30px;
    bottom: 40px;
    border: 5px dashed black;
    box-sizing: border-box;
  }
  </style>

  The black border should encompass the whole viewport,
  with a bit of space on each side.
  <br><br>
  It shouldn't just shrinkwrap this text's height.
</html>