Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-masking/clip-path/crashtests/clip-path-shape-arc-animation-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Masking: crash interpolating shape() arc radius</title>
<link rel="author" title="Jason Leo" href="mailto:cgqaq@chromium.org">
<style>
.container {
width: 200px;
height: 200px;
background-color: green;
animation: eye 1s infinite;
clip-path: shape(from 0% 50%, arc to 100% 50% of 100%, arc to 0% 50% of 100%);
}
@keyframes eye {
50% {
clip-path: shape(from 0% 50%, arc to 100% 50% of 63%, arc to 0% 50% of 63%);
}
}
</style>
<div class="container"></div>