Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-view-transitions/active-view-transition-on-non-root.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<title>View transitions: active-view-transition should only apply to the root element</title>
<link rel="author" href="mailto:vmpstr@chromium.org">
<link rel="match" href="view-transition-types-one-green-square-ref.html">
<script src="/common/reftest-wait.js"></script>
<style>
body { background: lightpink; }
#target {
view-transition-name: target;
background: green;
width: 100px;
height: 100px;
}
main:active-view-transition #target {
background: red;
}
::view-transition-group(*) {
animation-play-state: paused;
}
</style>
<main>
<div id="target"></div>
</main>
<script>
failIfNot(document.startViewTransition, "Missing document.startViewTransition");
function runTest() {
let transition = document.startViewTransition();
transition.ready.then(takeScreenshot);
}
onload = () => requestAnimationFrame(() => requestAnimationFrame(runTest));
</script>
</html>