Bug 1709347 - Add CanvasRenderingContext2D.reset(). r=lsalzman,webidl,smaug
[gecko.git] / layout / reftests / transform-3d / opacity-preserve3d-2.html
bloba04b99829136540e833391fc971540dc59493b55
1 <!DOCTYPE html>
2 <html><head>
3 <style>
4 .first {
5 transform: translateZ(10px);
6 background-color: blue;
7 top: 50px;
9 .second {
10 transform: translateZ(5px);
11 background-color: green;
13 .preserve {
14 transform-style: preserve-3d;
16 .leaf {
17 width: 100px;
18 height: 100px;
19 position:absolute;
21 </style>
22 </head><body>
24 <div class="preserve" style="opacity:0.5">
25 <div class="leaf first"></div>
26 <div class="leaf second"></div>
27 </div>
29 </body>
30 </html>