summaryrefslogtreecommitdiffstats
path: root/layout/reftests/box-shadow/boxshadow-button.html
blob: f1522536db77b145c84bf1254b14dbd0f287f449 (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
<!DOCTYPE HTML>
<style>
#a, #b {
  width: 100px;
  height: 100px;
  background-color: grey;
  -moz-appearance: none;
  box-shadow: 4px 4px 3px black;
  border: none !important;
  position: absolute;
}

#a {
  top: 20px;
  left: 20px;
}

#b {
  top: 170px;
  left: 20px;
</style>

<input type="button" id="a" value=""></input>
<button id="b"></button>