summaryrefslogtreecommitdiffstats
path: root/layout/reftests/box-shadow/boxshadow-border-radius-int-ref.html
blob: e797c61a263fd98500d4d804f90082fda7377eb7 (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
<html>
<style>
#boxShadow {
  height: 210px;
  width: 290px;
  box-shadow: 0px 0px 2px graytext inset;
}

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

#rightCover {
  width: 20px;
  height: 300px;
  background-color: white;
  position: absolute;
  top: 0px;
  left: 280px;
}
</style>
<body>
<div id="boxShadow">test</div>
<div id="leftCover"></div>
<div id="rightCover"></div>
</body>