Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that disables it given conditions:
- This WPT test may be referenced by the following Test IDs:
- /css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-4.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>CSS Test: background-{attachment: local; clip: border-box; image}; border-radius</title>
<link rel="match" href="attachment-local-clipping-image-4-ref.html" />
<meta name="flags" content="dom" />
<style>
#outer {
width: 200px;
height: 200px;
padding: 40px;
border: 10px double;
overflow: hidden;
border-radius: 50%;
background: url(aqua-yellow-32x32.png) local;
background-clip: border-box;
background-origin: padding-box;
}
#outer div {
height: 500px;
}
p {
margin-top: 20px;
}
</style>
<div id=outer>
<div>
<p>Test</p>
</div>
</div>
<script>
document.getElementById('outer').scrollTop = 15;
</script>