summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/quirks/body-fills-html-quirk-vertical.html
blob: 485c14d35e04fa4b3945f27f4a2741d477c208ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE quirks-mode>
<link rel="help" href="https://quirks.spec.whatwg.org/#the-body-element-fills-the-html-element-quirk"/>
<link rel="match" href="body-fills-html-quirk-ref2.html" />
<style>
  html {
    width: 200px;
    height: 200px;
    writing-mode: vertical-lr;
  }
  body {
    border: solid;
    margin: 10px 11px 12px 14px;
  }
  span {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: green;
  }
</style>
<body>
  <span></span>
</body>