Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-backgrounds/background-clip/clip-border-area-border-image.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>CSS Backgrounds Test: background-clip:border-area</title>
<link rel="match" href="clip-border-area-border-image-ref.html">
<meta name="assert" content="The border-area fill respects background i geometry">
<style>
.test {
margin: 20px;
width: 300px;
height: 200px;
box-sizing: border-box;
border: 50px solid transparent;
background-clip: border-area;
background-image: url(../resources/green-100.png);
background-size: 100px 100px;
background-position: 15px 20px;
border-image: url(../resources/stripes-100.png);
}
</style>
</head>
<body>
<div class="test"></div>
</body>
</html>