diff options
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> |