diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/css/css-view-transitions/no-containment-on-old-element.html | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-view-transitions/no-containment-on-old-element.html')
-rw-r--r-- | testing/web-platform/tests/css/css-view-transitions/no-containment-on-old-element.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-view-transitions/no-containment-on-old-element.html b/testing/web-platform/tests/css/css-view-transitions/no-containment-on-old-element.html new file mode 100644 index 0000000000..8b21916019 --- /dev/null +++ b/testing/web-platform/tests/css/css-view-transitions/no-containment-on-old-element.html @@ -0,0 +1,46 @@ +<!DOCTYPE html> +<html> +<title>View transitions: transition skipped if no containment on old element</title> +<link rel="help" href="https://www.w3.org/TR/css-view-transitions-1/"> +<link rel="author" href="mailto:khushalsagar@chromium.org"> + +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> + +<style> +div { + width: 100px; + height: 100px; + background: blue; + view-transition-name: target; +} +</style> + +<div id=first></div> + +<script> +promise_test(async t => { + assert_implements(document.startViewTransition, "Missing document.startViewTransition"); + return new Promise(async (resolve, reject) => { + let transition = document.startViewTransition(() => { + first.style.contain = "paint"; + }); + + let readyRejected = false; + transition.ready.then(reject, () => { readyRejected = true; }); + + let domUpdated = false; + transition.domUpdated.then(() => { domUpdated = true; }, reject); + transition.finished.then(() => { + assert_true(readyRejected, "ready not rejected"); + assert_true(domUpdated, "dom not updated"); + + if (window.getComputedStyle(first).contain == "paint") + resolve(); + else + reject("dom update callback did not run"); + + }, reject); + }); +}, "uncontained old element should skip the transition"); +</script> |