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/new-content-flat-transform-ancestor.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class=reftest-wait>
<title>View transitions: computed transform for elements with transform-style:flat ancestors is correct</title>
<link rel="author" title="Matt Woodrow" href="mailto:mattwoodrow@apple.com">
<link rel="match" href="new-content-flat-transform-ancestor-ref.html">
<meta name="fuzzy" content="maxDifference=0-63; totalPixels=0-510" />
<script src="/common/rendering-utils.js"></script>
<script src="/common/reftest-wait.js"></script>
<script src="../../../../../resources/ui-helper.js"></script>
<style>
body {
perspective: 1000px;
}
.box {
background: lightblue;
width: 100px;
height: 100px;
transform: rotateY(60deg);
view-transition-name: target;
}
.outer {
width: 100px;
height: 100px;
transform: rotateY(60deg);
perspective: 1000px;
}
/* We're verifying what we capture, so just display the new contents for 5 minutes. */
html::view-transition-group(*) { animation-duration: 300s; }
html::view-transition-new(*) { animation: unset; opacity: 1; }
html::view-transition-old(*) { animation: unset; opacity: 0; }
/* hide the root so we show transition background to ensure we're in a transition */
html::view-transition-group(root) { animation: unset; opacity: 0; }
html::view-transition { background: lightpink; }
</style>
<div class=outer>
<div class=outer>
<div class=box></div>
</div>
</div>
<script>
failIfNot(document.startViewTransition, "Missing document.startViewTransition");
async function runTest() {
await waitForAtLeastOneFrame();
let t = document.startViewTransition(() => {
requestAnimationFrame(() => requestAnimationFrame(takeScreenshot));
});
}
onload = () => requestAnimationFrame(() => requestAnimationFrame(runTest));
</script>