summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-layout-api/edges/scrollbar.https.html
blob: 76bbd4dccd075fe2f6e52aea606414999e1ee0a9 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html class=reftest-wait>
<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#dom-layoutedges">
<link rel="match" href="scrollbar-ref.html">
<meta name="assert" content="This test checks that scrollbar sizes are passed to the layout correctly." />
<style>
td { text-align: center; }

.parent {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  border: solid;
  position: relative;
  background: red;
}

@supports (display: layout(test)) {
  .parent {
    display: layout(test);
    background: initial;
  }
}

.child {
  width: 10px;
  height: 10px;
  background: green;
}
</style>
<!--
  This test works by placing four children in each corner of the layout using the edges.
  The reference to this test uses absolute positioning to achieve the same effect.
-->
<table>
  <tr>
    <td></td>
    <td colspan=2>LTR</td>
    <td colspan=2>RTL</td>
  </tr>
  <tr>
    <td></td>
    <td>Y</td>
    <td>X</td>
    <td>Y</td>
    <td>X</td>
  </tr>
  <tr>
    <td>HTB</td>
    <td>
      <div class="parent" style="writing-mode: horizontal-tb; direction: ltr; overflow-y: scroll;">
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
      </div>
    </td>
    <td>
      <div class="parent" style="writing-mode: horizontal-tb; direction: ltr; overflow-x: scroll;">
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
      </div>
    </td>
    <td>
      <div class="parent" style="writing-mode: horizontal-tb; direction: rtl; overflow-y: scroll;">
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
      </div>
    </td>
    <td>
      <div class="parent" style="writing-mode: horizontal-tb; direction: rtl; overflow-x: scroll;">
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
      </div>
    </td>
  </tr>
  <tr>
    <td>VRL</td>
    <td>
      <div class="parent" style="writing-mode: vertical-rl; direction: ltr; overflow-y: scroll;">
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
      </div>
    </td>
    <td>
      <div class="parent" style="writing-mode: vertical-rl; direction: ltr; overflow-x: scroll;">
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
      </div>
    </td>
    <td>
      <div class="parent" style="writing-mode: vertical-rl; direction: rtl; overflow-y: scroll;">
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
      </div>
    </td>
    <td>
      <div class="parent" style="writing-mode: vertical-rl; direction: rtl; overflow-x: scroll;">
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
      </div>
    </td>
  </tr>
  <tr>
    <td>VLR</td>
    <td>
      <div class="parent" style="writing-mode: vertical-lr; direction: ltr; overflow-y: scroll;">
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
      </div>
    </td>
    <td>
      <div class="parent" style="writing-mode: vertical-lr; direction: ltr; overflow-x: scroll;">
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
      </div>
    </td>
    <td>
      <div class="parent" style="writing-mode: vertical-lr; direction: rtl; overflow-y: scroll;">
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
      </div>
    </td>
    <td>
      <div class="parent" style="writing-mode: vertical-lr; direction: rtl; overflow-x: scroll;">
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
        <div class="child"></div>
      </div>
    </td>
  </tr>
</table>
<script src="/common/reftest-wait.js"></script>
<script src="/common/worklet-reftest.js"></script>
<script id="code" type="text/worklet">
registerLayout('test', class {
  async intrinsicSizes() {}
  async layout(children, edges, constraints) {
    const topLeftFragment = await children[0].layoutNextFragment();
    const topRightFragment = await children[1].layoutNextFragment();
    const bottomLeftFragment = await children[2].layoutNextFragment();
    const bottomRightFragment = await children[3].layoutNextFragment();

    topLeftFragment.inlineOffset = edges.inlineStart;
    topLeftFragment.blockOffset = edges.blockStart;

    topRightFragment.inlineOffset =
        constraints.fixedInlineSize - topRightFragment.inlineSize - edges.inlineEnd;
    topRightFragment.blockOffset = edges.blockStart;

    bottomLeftFragment.inlineOffset = edges.inlineStart;
    bottomLeftFragment.blockOffset =
        constraints.fixedBlockSize - bottomLeftFragment.blockSize - edges.blockEnd;

    bottomRightFragment.inlineOffset =
        constraints.fixedInlineSize - bottomRightFragment.inlineSize - edges.inlineEnd;
    bottomRightFragment.blockOffset =
        constraints.fixedBlockSize - bottomRightFragment.blockSize - edges.blockEnd;

    return {childFragments: [
        topLeftFragment,
        topRightFragment,
        bottomLeftFragment,
        bottomRightFragment
    ]};
  }
});
</script>
<script>
importWorkletAndTerminateTestAfterAsyncPaint(CSS.layoutWorklet, document.getElementById('code').textContent);
</script>