summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-view-transitions/animating-new-content.html
diff options
context:
space:
mode:
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.html75
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>
+