summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-overflow/scrollbar-gutter-002.html
blob: 531af61b5d35e1638586fa0383f3ce27cacc762a (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
  <meta charset="utf-8">
  <meta name="fuzzy" content="1;0-50">
  <title>CSS Overflow: test scrollbar-gutter with horizontal left to right content</title>
  <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-overflow-4/#scrollbar-gutter-property">
  <link rel="match" href="scrollbar-gutter-002-ref.html">

  <style>
  .line {
    display: flex;
  }

  .container {
    writing-mode: horizontal-tb;
    direction: ltr;

    block-size: 200px;
    inline-size: 200px;
    margin: 10px;
    background: deepskyblue;
    resize: both;
  }

  .content {
    inline-size: 100%;
    block-size: 200%;
    background: lightsalmon;
  }
  </style>

  <div class="line">
    <div class="container" style="overflow-y: auto; scrollbar-gutter: stable">
      <div class="content"></div>
    </div>

    <div class="container" style="overflow-y: scroll; scrollbar-gutter: stable">
      <div class="content"></div>
    </div>

    <div class="container" style="overflow-y: hidden; scrollbar-gutter: stable">
      <div class="content"></div>
    </div>
  </div>

  <div class="line">
    <div class="container" style="overflow-y: auto; scrollbar-gutter: stable both-edges">
      <div class="content"></div>
    </div>

    <div class="container" style="overflow-y: scroll; scrollbar-gutter: stable both-edges">
      <div class="content"></div>
    </div>

    <div class="container" style="overflow-y: hidden; scrollbar-gutter: stable both-edges">
      <div class="content"></div>
    </div>
  </div>
</html>