scroll-frame-order-ref.yaml (799B)
1 # Tests that scroll frames can be defined and used in any order. 2 3 --- 4 root: 5 items: 6 - type: scroll-frame 7 bounds: [0, 0, 50, 50] 8 content-size: [50, 50] 9 clip-rect: [0, 0, 50, 50] 10 id: 123 11 - type: scroll-frame 12 bounds: [50, 0, 50, 50] 13 content-size: [50, 50] 14 clip-rect: [50, 0, 50, 50] 15 scroll-offset: [0, -25] 16 id: 456 17 - type: scroll-frame 18 bounds: [100, 0, 50, 50] 19 content-size: [50, 50] 20 clip-rect: [100, 0, 50, 50] 21 scroll-offset: [0, -15] 22 id: 789 23 - type: rect 24 bounds: [0, 0, 50, 50] 25 color: red 26 spatial-id: 123 27 - type: rect 28 bounds: [50, 0, 50, 50] 29 color: green 30 spatial-id: 456 31 - type: rect 32 bounds: [100, 0, 50, 50] 33 color: blue 34 spatial-id: 789