forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoverflow-clip-margin-022.html
More file actions
34 lines (34 loc) · 959 Bytes
/
overflow-clip-margin-022.html
File metadata and controls
34 lines (34 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!doctype html>
<html class="reftest">
<meta charset="utf-8">
<title>overflow-clip-margin: border-box is ignored on a scroller, including the offset</title>
<link rel="help" href="https://www.w3.org/TR/css-overflow-3/#propdef-overflow-clip-margin">
<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: 80px;
height: 80px;
padding: 10px;
border: 10px solid transparent;
margin: -10px 0 0 -10px;
overflow: hidden;
overflow-clip-margin: border-box -1000px;
background: red;
background-clip: content-box;
}
.big {
width: 100px;
height: 100px;
border: 50px solid red;
position: relative;
top: -60px;
left: -60px;
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>