diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:43:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:43:14 +0000 |
commit | 8dd16259287f58f9273002717ec4d27e97127719 (patch) | |
tree | 3863e62a53829a84037444beab3abd4ed9dfc7d0 /testing/web-platform/tests/css/css-view-transitions/iframe-and-main-frame-transition-old-main-old-iframe.html | |
parent | Releasing progress-linux version 126.0.1-1~progress7.99u1. (diff) | |
download | firefox-8dd16259287f58f9273002717ec4d27e97127719.tar.xz firefox-8dd16259287f58f9273002717ec4d27e97127719.zip |
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-view-transitions/iframe-and-main-frame-transition-old-main-old-iframe.html')
-rw-r--r-- | testing/web-platform/tests/css/css-view-transitions/iframe-and-main-frame-transition-old-main-old-iframe.html | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-view-transitions/iframe-and-main-frame-transition-old-main-old-iframe.html b/testing/web-platform/tests/css/css-view-transitions/iframe-and-main-frame-transition-old-main-old-iframe.html new file mode 100644 index 0000000000..bcdc566a26 --- /dev/null +++ b/testing/web-platform/tests/css/css-view-transitions/iframe-and-main-frame-transition-old-main-old-iframe.html @@ -0,0 +1,67 @@ +<!DOCTYPE html> +<html class=reftest-wait> +<title>View transitions: iframe and main frame transition at the same time</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="iframe-and-main-frame-transition-old-main-old-iframe-ref.html"> +<script src="/common/reftest-wait.js"></script> +<style> +iframe { + position: fixed; + top: 0; + left: 0; + width: 50vw; + height: 50vh; +} + +/* Keep showing the screenshot for the main frame */ +::view-transition-group(root) { + animation-duration: 300s; +} +::view-transition-old(root) { + animation: unset; + opacity: 1; +} +::view-transition-new(root) { + animation: unset; + opacity: 0; +} +</style> + +<iframe srcdoc=" +<style> + /* The iframe is showing an old screenshot */ + ::view-transition-group(root) { + animation-duration: 300s; + } + ::view-transition-old(root) { + animation: unset; + opacity: 1; + } + ::view-transition-new(root) { + animation: unset; + opacity: 0; + } +</style> +<body></body> +"></iframe> +<script> + onload = runTest; + + async function startTransition(document, oldColor, newColor) { + document.documentElement.style.background = oldColor; + await document.startViewTransition(() => { + document.documentElement.style.background = newColor; + }).ready; + } + + async function runTest() { + const iframeDocument = document.querySelector("iframe").contentDocument; + await startTransition(iframeDocument, "blue", "lightblue"); + + await startTransition(document, "green", "lightgreen"); + + takeScreenshot(); + } +</script> + |