summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/box-shadow/spread-multiple-inset.html
blob: e1898646677b336f3c7f8139e71e927f02c7d1f0 (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
63
64
65
66
67
68
69
<html>
<head>
<style>
.square {
  margin: 25px;
  height: 200px;
  width: 200px;
  background-color: black;
  border-radius: 100px;
}

#negative {
  position: absolute;
  top:  10px;
  left: 10px;

  -webkit-box-shadow: inset  40px 0px 0px -10px #00f,
                      inset  80px 0px 0px -15px #808, 
                      inset 120px 0px 0px -20px #b04,
                      inset 160px 0px 0px -25px #f00;
}

#positive {
  position: absolute;
  top:   10px;
  left: 300px;

  -webkit-box-shadow: inset  40px 0px 0px  10px #00f,
                      inset  80px 0px 0px  15px #808, 
                      inset 120px 0px 0px  20px #b04,
                      inset 160px 0px 0px  25px #f00;
}

#mixed1 {
  position: absolute;
  top:  300px;
  left:  10px;

  -webkit-box-shadow: inset  40px 0px 0px  10px #00f,
                      inset  80px 0px 0px -15px #808, 
                      inset 120px 0px 0px  20px #b04,
                      inset 160px 0px 0px -25px #f00;
}

#mixed2 {
  position: absolute;
  top:  300px;
  left: 300px;

  -webkit-box-shadow: inset  40px 0px 0px -10px #00f,
                      inset  80px 0px 0px  15px #808, 
                      inset 120px 0px 0px -20px #b04,
                      inset 160px 0px 0px  25px #f00;
}

</style>
<script>
if (window.testRunner)
    testRunner.dumpAsTextWithPixelResults();
</script>
</head>
<body>
<p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=51386">51386</a></p>
<div class="square" id="negative"></div>
<div class="square" id="positive"></div>
<div class="square" id="mixed1"></div>
<div class="square" id="mixed2"></div>
</body>
</html>