summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/536061.html
blob: ce652a22032ca5003669d4e0cf3a84bd6b5061c5 (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
<!DOCTYPE html>

<html lang="en">
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <title>Bugs with transform: rotate() and box-shadow</title>

  <style>
    body {
        overflow: hidden;
    }

    .label {
        position: absolute;
        top: 200px;
        left: 100px;
        margin: 0;
        height: 16px;
        width: 300px;
        transform: translate(96px);
        box-shadow: 0 0 .7em black;
        border: 1px black solid;
    }
    .vlabel {
        position: absolute;
        top: 40px;
        left: 40px;
        margin: 0;
        width: 16px;
        height: 300px;
        box-shadow: 0 0 .7em black;
        border: 1px black solid;
    }
  </style>
</head>

<body>

<p class="label"></p>
<p class="label" style="top: 400px; box-shadow:none; outline: 3px dashed blue;"></p>
<p class="label" style="left:-100px; top: 200px; box-shadow:none; outline: 3px dashed blue; transform: rotate(90deg);"></p>
<p class="label" style="left:-40px; top: 200px; transform: rotate(90deg);"></p>
<p class="label" style="left:-100px; top: 200px; box-shadow:none; outline: 3px dashed blue; transform: translate(0,396px) rotate(90deg);"></p>
<p class="label" style="left:-40px; top: 200px; transform: translate(0,396px) rotate(90deg);"></p>

<!-- cover a few shadow corners which are a bit different -->
<div style="position:absolute; top:40px; left:85px; width:50px; height:50px; background:black; z-index:99;"></div>
<div style="position:absolute; top:340px; left:85px; width:50px; height:50px; background:black; z-index:99;"></div>
<div style="position:absolute; top:420px; left:85px; width:50px; height:50px; background:black; z-index:99;"></div>
<div style="position:absolute; top:730px; left:85px; width:50px; height:50px; background:black; z-index:99;"></div>

</body>

</html>