diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/css/css-view-transitions/animating-new-content.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-view-transitions/animating-new-content.html')
-rw-r--r-- | testing/web-platform/tests/css/css-view-transitions/animating-new-content.html | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-view-transitions/animating-new-content.html b/testing/web-platform/tests/css/css-view-transitions/animating-new-content.html new file mode 100644 index 0000000000..9bfcb51a91 --- /dev/null +++ b/testing/web-platform/tests/css/css-view-transitions/animating-new-content.html @@ -0,0 +1,75 @@ +<!DOCTYPE html> +<html class=reftest-wait> +<title>View transitions: animations in the new element show up in the images</title> +<link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/"> +<link rel="author" href="mailto:khushalsagar@chromium.org"> +<link rel="match" href="animating-new-content-ref.html"> + +<script src="/common/reftest-wait.js"></script> +<script src="/common/rendering-utils.js"></script> +<style> +#target { + width:100px; + height:100px; + background: blue; + view-transition-name: target; + will-change: transform; +} + +.child { + width: 50px; + height: 50px; + will-change: transform; + background: green; +} + +.hidden { + width: 10px; + height: 10px; + background: grey; + view-transition-name: hidden; +} + +html::view-transition-group(hidden) { animation-duration: 300s; } +html::view-transition-image-pair(hidden) { animation: unset; opacity: 0; } + +html::view-transition-group(target) { + animation: unset; +} + +html::view-transition-old(target) { + animation: unset; + opacity: 0; +} + +html::view-transition-new(target) { + animation: unset; + opacity: 1; +} +</style> + +<div id="target"> + <div class="child"> + I'm the inner composited child. + </div> +</div> +<div class="hidden"></div> + +<script> +failIfNot(document.startViewTransition, "Missing document.startViewTransition"); + +async function runTest() { + let transition = document.startViewTransition(); + transition.ready.then(async () => { + await waitForAtLeastOneFrame(); + await waitForAtLeastOneFrame(); + target.style.background = "grey"; + + await waitForAtLeastOneFrame(); + await waitForAtLeastOneFrame(); + takeScreenshot(); + }); +} +onload = () => requestAnimationFrame(() => requestAnimationFrame(runTest)); +</script> + |