Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<html class="reftest">
<meta charset="utf-8">
<title>overflow-clip-margin: content-box on a scroller</title>
<link rel="author" title="Tab Atkins-Bittner" href="mailto:jackalmage@gmail.com">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<style>
.clip {
width: 100px;
height: 100px;
border: 10px solid transparent;
padding: 10px;
margin: -20px 0 0 -20px;
overflow: hidden;
overflow-clip-margin: content-box;
}
.big {
width: 100px;
height: 100px;
border: 50px solid red;
position: relative;
top: -50px;
left: -50px;
z-index: 1;
background: green;
}
</style>
<p>Test passes if there is a filled green square.</p>
<div class=clip>
<div class=big></div>
</div>