summaryrefslogtreecommitdiffstats
path: root/layout/reftests/box-shadow/boxshadow-large-border-radius.html
blob: 90eee1db3695077ca1b81e374142cf10a4af8824 (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
<html>
<head>
<style>
  #boxShadow {
    width: 152px;
    height: 19.5px;
    box-shadow: 0px 0px 1px #3b99FC inset,
                0px 0px 4px 1px #3B99FC,
                0px 0px 1.5px 1px #3B99FC;
    border-radius: 10000px 0px 0px 10000px;
    position: absolute;
  }

  #leftCover {
    width: 30px;
    height: 50px;
    background-color: white;
    position: absolute;
    left: 0px;
    top: 0px;
  }

  #rightCover {
    width: 20px;
    height: 120px;
    background-color: white;
    position: absolute;
    top: 0px;
    left: 150px;
  }
</style>
</head>
<html>
  <div id="boxShadow"></div>
  <div id="leftCover"></div>
  <div id="rightCover"></div>
</html>