Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-borders/border-image-gradient-zero-size-transform-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
#container {
border-style: dotted hidden;
border-image: repeating-linear-gradient(to left top, blue, red);
width: 0;
transition: all 0.5s;
}
</style>
<div id="container"></div>
<script>
addEventListener("load", () => {
container.style.padding = "1px";
});
</script>
</body>