summaryrefslogtreecommitdiffstats
path: root/gfx/wr/wrench/reftests/scrolling/sticky-applied.yaml
blob: 21a9dc4743a96392233ef5e38ceebb1ad3562ab3 (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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
root:
  items:
    # Tests sticky-positioned items with previously-applied-offsets.

    # This item is bottom-sticky; we indicate to WR that it already has had
    # a sticky offset of y=-50 applied, and then scroll down by 50 pixels. WR
    # should unapply the entire 50px that was applied, and leave the rect
    # visually in the same spot.
    - type: scroll-frame
      id: 2
      bounds: [10, 10, 50, 50]
      content-size: [200, 200]
      scroll-offset: [0, 50]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [10, 10, 50, 50]
        margin-bottom: 0
        vertical-offset-bounds: [-500, 0]
        previously-applied-offset: [0, -50]
        items:
        - type: rect
          bounds: [10, 10, 50, 50]
          color: green
          clip-chain: [2]
    # Same as above, but this time we only indicate a previous-applied-offset
    # of 40 pixels, so that's the maximum WR will unapply
    - type: scroll-frame
      id: 3
      bounds: [10, 70, 50, 50]
      content-size: [200, 200]
      scroll-offset: [0, 50]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [10, 70, 50, 50]
        margin-bottom: 0
        vertical-offset-bounds: [-500, 0]
        previously-applied-offset: [0, -40]
        items:
        - type: rect
          bounds: [10, 70, 50, 50]
          color: green
          clip-chain: [3]
    # This time we indicate a previously-applied-offset of 50 pixels, but only
    # scroll by 40 pixels. In this case 40 of the 50 applied-offset pixels will
    # be unapplied
    - type: scroll-frame
      id: 4
      bounds: [10, 130, 50, 50]
      content-size: [200, 200]
      scroll-offset: [0, 40]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [10, 130, 50, 50]
        margin-bottom: 0
        vertical-offset-bounds: [-500, 0]
        previously-applied-offset: [0, -50]
        items:
        - type: rect
          bounds: [10, 130, 50, 50]
          color: green
          clip-chain: [4]
    # Here we indicate a previously-applied-offset of 50 pixels, but continue
    # scrolling in WR in the same direction by another 10 pixels. This effectively
    # increases the applied offset to 60 pixels.
    - type: scroll-frame
      id: 5
      bounds: [10, 190, 50, 50]
      content-size: [200, 200]
      scroll-offset: [0, -10]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [10, 190, 50, 50]
        margin-bottom: 0
        vertical-offset-bounds: [-500, 0]
        previously-applied-offset: [0, -50]
        items:
        - type: rect
          bounds: [10, 190, 50, 50]
          color: green
          clip-chain: [5]
    # Same as previous case, but this time with the vertical-offset-bounds
    # adjusted to limit the applied offset to only 55 pixels.
    - type: scroll-frame
      id: 6
      bounds: [10, 250, 50, 50]
      content-size: [200, 200]
      scroll-offset: [0, -10]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [10, 250, 50, 50]
        margin-bottom: 0
        vertical-offset-bounds: [-55, 0]
        previously-applied-offset: [0, -50]
        items:
        - type: rect
          bounds: [10, 250, 50, 50]
          color: green
          clip-chain: [6]

    # Repeat all the above cases, for top-sticky

    - type: scroll-frame
      id: 7
      bounds: [70, 10, 50, 50]
      content-size: [200, 200]
      scroll-offset: [0, -50]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [70, 10, 50, 50]
        margin-top: 0
        vertical-offset-bounds: [0, 500]
        previously-applied-offset: [0, 50]
        items:
        - type: rect
          bounds: [70, 10, 50, 50]
          color: green
          clip-chain: [7]
    - type: scroll-frame
      id: 8
      bounds: [70, 70, 50, 50]
      content-size: [200, 200]
      scroll-offset: [0, -50]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [70, 70, 50, 50]
        margin-top: 0
        vertical-offset-bounds: [0, 500]
        previously-applied-offset: [0, 40]
        items:
        - type: rect
          bounds: [70, 70, 50, 50]
          color: green
          clip-chain: [8]
    - type: scroll-frame
      id: 9
      bounds: [70, 130, 50, 50]
      content-size: [200, 200]
      scroll-offset: [0, -40]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [70, 130, 50, 50]
        margin-top: 0
        vertical-offset-bounds: [0, 500]
        previously-applied-offset: [0, 50]
        items:
        - type: rect
          bounds: [70, 130, 50, 50]
          color: green
          clip-chain: [9]
    - type: scroll-frame
      id: 10
      bounds: [70, 190, 50, 50]
      content-size: [200, 200]
      scroll-offset: [0, 10]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [70, 190, 50, 50]
        margin-top: 0
        vertical-offset-bounds: [0, 500]
        previously-applied-offset: [0, 50]
        items:
        - type: rect
          bounds: [70, 190, 50, 50]
          color: green
          clip-chain: [10]
    - type: scroll-frame
      id: 11
      bounds: [70, 250, 50, 50]
      content-size: [200, 200]
      scroll-offset: [0, 10]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [70, 250, 50, 50]
        margin-top: 0
        vertical-offset-bounds: [0, 55]
        previously-applied-offset: [0, 50]
        items:
        - type: rect
          bounds: [70, 250, 50, 50]
          color: green
          clip-chain: [11]

    # Repeat all the above cases, for right-sticky

    - type: scroll-frame
      id: 12
      bounds: [130, 10, 50, 50]
      content-size: [200, 200]
      scroll-offset: [50, 0]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [130, 10, 50, 50]
        margin-right: 0
        horizontal-offset-bounds: [-500, 0]
        previously-applied-offset: [-50, 0]
        items:
        - type: rect
          bounds: [130, 10, 50, 50]
          color: green
          clip-chain: [12]
    - type: scroll-frame
      id: 13
      bounds: [130, 70, 50, 50]
      content-size: [200, 200]
      scroll-offset: [50, 0]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [130, 70, 50, 50]
        margin-right: 0
        horizontal-offset-bounds: [-500, 0]
        previously-applied-offset: [-40, 0]
        items:
        - type: rect
          bounds: [130, 70, 50, 50]
          color: green
          clip-chain: [13]
    - type: scroll-frame
      id: 14
      bounds: [130, 130, 50, 50]
      content-size: [200, 200]
      scroll-offset: [40, 0]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [130, 130, 50, 50]
        margin-right: 0
        horizontal-offset-bounds: [-500, 0]
        previously-applied-offset: [-50, 0]
        items:
        - type: rect
          bounds: [130, 130, 50, 50]
          color: green
          clip-chain: [14]
    - type: scroll-frame
      id: 15
      bounds: [130, 190, 50, 50]
      content-size: [200, 200]
      scroll-offset: [-10, 0]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [130, 190, 50, 50]
        margin-right: 0
        horizontal-offset-bounds: [-500, 0]
        previously-applied-offset: [-50, 0]
        items:
        - type: rect
          bounds: [130, 190, 50, 50]
          color: green
          clip-chain: [15]
    - type: scroll-frame
      id: 16
      bounds: [130, 250, 50, 50]
      content-size: [200, 200]
      scroll-offset: [-10, 0]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [130, 250, 50, 50]
        margin-right: 0
        horizontal-offset-bounds: [-55, 0]
        previously-applied-offset: [-50, 0]
        items:
        - type: rect
          bounds: [130, 250, 50, 50]
          color: green
          clip-chain: [16]

    # Repeat all the above cases, for left-sticky

    - type: scroll-frame
      id: 17
      bounds: [190, 10, 50, 50]
      content-size: [200, 200]
      scroll-offset: [-50, 0]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [190, 10, 50, 50]
        margin-left: 0
        horizontal-offset-bounds: [0, 500]
        previously-applied-offset: [50, 0]
        items:
        - type: rect
          bounds: [190, 10, 50, 50]
          color: green
          clip-chain: [17]
    - type: scroll-frame
      id: 18
      bounds: [190, 70, 50, 50]
      content-size: [200, 200]
      scroll-offset: [-50, 0]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [190, 70, 50, 50]
        margin-left: 0
        horizontal-offset-bounds: [0, 500]
        previously-applied-offset: [40, 0]
        items:
        - type: rect
          bounds: [190, 70, 50, 50]
          color: green
          clip-chain: [18]
    - type: scroll-frame
      id: 19
      bounds: [190, 130, 50, 50]
      content-size: [200, 200]
      scroll-offset: [-40, 0]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [190, 130, 50, 50]
        margin-left: 0
        horizontal-offset-bounds: [0, 500]
        previously-applied-offset: [50, 0]
        items:
        - type: rect
          bounds: [190, 130, 50, 50]
          color: green
          clip-chain: [19]
    - type: scroll-frame
      id: 20
      bounds: [190, 190, 50, 50]
      content-size: [200, 200]
      scroll-offset: [10, 0]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [190, 190, 50, 50]
        margin-left: 0
        horizontal-offset-bounds: [0, 500]
        previously-applied-offset: [50, 0]
        items:
        - type: rect
          bounds: [190, 190, 50, 50]
          color: green
          clip-chain: [20]
    - type: scroll-frame
      id: 21
      bounds: [190, 250, 50, 50]
      content-size: [200, 200]
      scroll-offset: [10, 0]
      clip-to-frame: true
      items:
      - type: sticky-frame
        bounds: [190, 250, 50, 50]
        margin-left: 0
        horizontal-offset-bounds: [0, 55]
        previously-applied-offset: [50, 0]
        items:
        - type: rect
          bounds: [190, 250, 50, 50]
          color: green
          clip-chain: [21]