25 lines
No EOL
717 B
YAML
25 lines
No EOL
717 B
YAML
# This is a regression test for https://bugzilla.mozilla.org/show_bug.cgi?id=1594567
|
|
# The single clip node from the primitive inside the scroll frame will be promoted
|
|
# to a 'shared clip' in the picture cache for the scroll frame. Ensure that this clip
|
|
# (zero sized in this test) is included in the tile occlusion culling.
|
|
---
|
|
root:
|
|
items:
|
|
-
|
|
type: rect
|
|
bounds: [0, 0, 500, 500]
|
|
color: red
|
|
-
|
|
type: scroll-frame
|
|
content-size: [1000, 10000]
|
|
bounds: [0, -5000, 1000, 10000]
|
|
items:
|
|
- type: clip
|
|
id: 2
|
|
bounds: [0, 0, 0, 0]
|
|
-
|
|
bounds: [0, -5000, 1000, 10000]
|
|
type: rect
|
|
color: green
|
|
clip-chain: [2]
|
|
|