Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-masking/clip-path/animations/clip-path-transition-custom-timing-function.html
<!DOCTYPE html> <html class="reftest-wait"> <link rel="help" href="https://drafts.csswg.org/css-shapes-1/#basic-shape-interpolation"> <link rel="match" href="clip-path-animation-custom-timing-function-ref.html"> <meta name="fuzzy" content="maxDifference=0-15; totalPixels=0-628"> <style> .green { background-color: green; width: 200px; height: 200px; clip-path: inset(45%); transition-property: clip-path; transition-duration: 10000000s; transition-timing-function: cubic-bezier(0, 9, 1, 9); transition-delay: -5220715s; } </style> <script src="/common/reftest-wait.js"></script> <body> <div class="green" id="target"></div> <script> function update() { document.getElementById('target').style.clipPath = "inset(40%)"; requestAnimationFrame(() => { takeScreenshot(); }); } requestAnimationFrame(function () { requestAnimationFrame(update); }); </script> </body> </html>
/css/css-masking/clip-path/animations/clip-path-animation-custom-timing-function-ref.html
<!DOCTYPE html> <style> .green { background-color: green; width: 200px; height: 200px; clip-path: inset(10.59741054822%); } </style> <body> <div class="green"></div> </body> </html>