blob: 7803574bede46577be0da476bbec585c1b60a7b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Test that items with an external scroll offset in both the
# scroll node and primitive match up with items that have
# been scrolled without an external scroll offset.
root:
items:
- type: scroll-frame
bounds: [0, 0, 100, 100]
content-size: [100, 1000]
scroll-offset: [0, 0]
external-scroll-offset: [0, 50]
items:
- type: rect
color: green
bounds: [0, 50, 100, 100]
|