diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /gfx/wr/wrench/invalidation | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/wr/wrench/invalidation')
-rw-r--r-- | gfx/wr/wrench/invalidation/basic.yaml | 6 | ||||
-rw-r--r-- | gfx/wr/wrench/invalidation/composite_nop_1.yaml | 6 | ||||
-rw-r--r-- | gfx/wr/wrench/invalidation/composite_nop_2.yaml | 6 | ||||
-rw-r--r-- | gfx/wr/wrench/invalidation/scroll_subpic_1.yaml | 29 | ||||
-rw-r--r-- | gfx/wr/wrench/invalidation/scroll_subpic_2.yaml | 26 |
5 files changed, 73 insertions, 0 deletions
diff --git a/gfx/wr/wrench/invalidation/basic.yaml b/gfx/wr/wrench/invalidation/basic.yaml new file mode 100644 index 0000000000..c7d1b6f450 --- /dev/null +++ b/gfx/wr/wrench/invalidation/basic.yaml @@ -0,0 +1,6 @@ +--- +root: + items: + - type: rect + color: red + bounds: 100 100 500 100 diff --git a/gfx/wr/wrench/invalidation/composite_nop_1.yaml b/gfx/wr/wrench/invalidation/composite_nop_1.yaml new file mode 100644 index 0000000000..ce6cc46977 --- /dev/null +++ b/gfx/wr/wrench/invalidation/composite_nop_1.yaml @@ -0,0 +1,6 @@ +--- +root: + items: + - type: rect + color: red + bounds: 100 100 100 100 diff --git a/gfx/wr/wrench/invalidation/composite_nop_2.yaml b/gfx/wr/wrench/invalidation/composite_nop_2.yaml new file mode 100644 index 0000000000..a99663ed54 --- /dev/null +++ b/gfx/wr/wrench/invalidation/composite_nop_2.yaml @@ -0,0 +1,6 @@ +--- +root: + items: + - type: rect + color: red + bounds: 100 120 100 100 diff --git a/gfx/wr/wrench/invalidation/scroll_subpic_1.yaml b/gfx/wr/wrench/invalidation/scroll_subpic_1.yaml new file mode 100644 index 0000000000..f677f984b1 --- /dev/null +++ b/gfx/wr/wrench/invalidation/scroll_subpic_1.yaml @@ -0,0 +1,29 @@ +# This is intended to be a really simple imitation of what Gecko's +# display-list around the content scrolling viewport. In addition to the +# scroll-frame's clip (added by clip-to-frame) it also adds equivalent clips +# to everything inside, including inside the stacking context. The stacking +# context with partial opacity acts as a regression test for bug 1836063. + +root: + items: + - type: clip + id: 2 + bounds: [0, 0, 50, 50] + - type: clip-chain + id: 3 + clips: [2] + + - type: scroll-frame + bounds: [0, 0, 50, 50] + scroll-offset: [0, 0] + clip-to-frame: true + items: + - type: stacking-context + bounds: [0, 0, 100, 500] + filters: [opacity(0.9)] + clip-chain: 3 + items: + - type: rect + bounds: [0, 0, 100, 500] + color: green + clip-chain: 3 diff --git a/gfx/wr/wrench/invalidation/scroll_subpic_2.yaml b/gfx/wr/wrench/invalidation/scroll_subpic_2.yaml new file mode 100644 index 0000000000..d38352d298 --- /dev/null +++ b/gfx/wr/wrench/invalidation/scroll_subpic_2.yaml @@ -0,0 +1,26 @@ +# This file should be identical to scroll_subpic_1.yaml except for the +# scroll-offset on the scroll-frame. + +root: + items: + - type: clip + id: 2 + bounds: [0, 0, 50, 50] + - type: clip-chain + id: 3 + clips: [2] + + - type: scroll-frame + bounds: [0, 0, 50, 50] + scroll-offset: [0, 10] + clip-to-frame: true + items: + - type: stacking-context + bounds: [0, 0, 100, 500] + filters: [opacity(0.9)] + clip-chain: 3 + items: + - type: rect + bounds: [0, 0, 100, 500] + color: green + clip-chain: 3 |