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/crashtests/mask-repeat-round-one-tile.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>No crash when mask-repeat is round with mask-size larger than element</title>
<style>
#target {
width: 100px;
height: 100px;
mask-image: url("../resources/green-20.png");
mask-repeat: round;
/* mask-size is at least twice as big as the element */
mask-size: 201px 201px;
background-color: green;
}
</style>
<div id="target"></div>