blob: 0242f9e96be9a7a9bcd3b8f33024205440aea4e9 (
plain)
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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Testcase for bug 1086723</title>
<style type="text/css">
.test_div {
position: fixed;
overflow: hidden;
background: blue;
width: 50%;
height: 50%;
border-radius: 0px 50% 50% 0px;
}
.filler {
height: 5000px;
}
body,html {
overflow: hidden;
}
</style>
</head>
<body>
<div class="test_div"></div>
<div class="filler"></div>
</body>
</html>
|