Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 536061.html
blob746651dae2cd4f593e19bd21529a05bbeb3c57e1
1 <!DOCTYPE html>
3 <html lang="en">
4 <head>
5 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
6 <title>Bugs with -moz-transform: rotate() and box-shadow</title>
8 <style>
9 body {
10 overflow: hidden;
13 .label {
14 position: absolute;
15 top: 200px;
16 left: 100px;
17 margin: 0;
18 height: 16px;
19 width: 300px;
20 -moz-transform: translate(96px);
21 box-shadow: 0 0 .7em black;
22 border: 1px black solid;
24 .vlabel {
25 position: absolute;
26 top: 40px;
27 left: 40px;
28 margin: 0;
29 width: 16px;
30 height: 300px;
31 box-shadow: 0 0 .7em black;
32 border: 1px black solid;
34 </style>
35 </head>
37 <body>
39 <p class="label"></p>
40 <p class="label" style="top: 400px; box-shadow:none; outline: 3px dashed blue;"></p>
41 <p class="label" style="left:-100px; top: 200px; box-shadow:none; outline: 3px dashed blue; -moz-transform: rotate(90deg);"></p>
42 <p class="label" style="left:-40px; top: 200px; -moz-transform: rotate(90deg);"></p>
43 <p class="label" style="left:-100px; top: 200px; box-shadow:none; outline: 3px dashed blue; -moz-transform: translate(0,396px) rotate(90deg);"></p>
44 <p class="label" style="left:-40px; top: 200px; -moz-transform: translate(0,396px) rotate(90deg);"></p>
46 <!-- cover a few shadow corners which are a bit different -->
47 <div style="position:absolute; top:40px; left:85px; width:50px; height:50px; background:black; z-index:99;"></div>
48 <div style="position:absolute; top:340px; left:85px; width:50px; height:50px; background:black; z-index:99;"></div>
49 <div style="position:absolute; top:420px; left:85px; width:50px; height:50px; background:black; z-index:99;"></div>
50 <div style="position:absolute; top:730px; left:85px; width:50px; height:50px; background:black; z-index:99;"></div>
52 </body>
54 </html>