summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/box-shadow/box-shadow-with-zero-radius-expected.html
blob: 46e5457593e78f032c0ecd1bb07791e6ccde0354 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html>
<head>
<style type="text/css">
.greenSquare {
    position: absolute;
    top:50px;
    left:50px;
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 50px 50px;
    border-top-left-radius: 50px 50px;
    background-color: green;
}

.yellowSquare {
    position: absolute;
    top: 20px;
    left: 250px;
    width: 120px;
    height: 120px;
    border-top-right-radius: 60px 60px;
    border-bottom-left-radius: 70px 60px;
    background-color: yellow;
}

.green-shadow {
    position: absolute;
    top: 150px;
    left: 150px;
    width: 120px;
    height: 120px;
    border-bottom-right-radius: 60px 60px;
    border-top-left-radius: 60px 60px;
    background-color: black;
}

.yellow-shadow {
    position: absolute;
    top: 160px;
    left: 350px;
    width: 140px;
    height: 140px;
    border-top-right-radius: 70px 70px;
    border-bottom-left-radius: 80px 70px;
    background-color: black;
}

.container {
    position: absolute;
}
</style>
</head>
<body>
<div class="container">
  <div id="yellowShadow" class="yellow-shadow"></div>
  <div id="yellow" class="yellowSquare"></div>
  <div id="greenShadow" class="green-shadow"></div>
  <div id="green" class="greenSquare"></div>
</div>
</body>
</html>