Status: FAIL | Duration: 46ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-view-transitions/new-content-flat-transform-ancestor.html
<!DOCTYPE html> <html class=reftest-wait> <title>View transitions: computed transform for elements with transform-style:flat ancestors is correct</title> <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/"> <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-512"> <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>
/css/css-view-transitions/new-content-flat-transform-ancestor-ref.html
<!DOCTYPE html> <html> <title>View transitions: computed transform for elements with transform-style:flat ancestors is correct (ref)</title> <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/"> <style> body { perspective: 1000px; } .box { background: lightblue; width: 100px; height: 100px; transform: rotateY(60deg); } .outer { width: 100px; height: 100px; transform: rotateY(60deg); perspective: 1000px; } body { background: lightpink; } </style> <div class=outer> <div class=outer> <div class=box></div> </div> </div> </html>