Bug 1731994: part 4) Declare more methods around `ContentPermissionRequestBase` ...
[gecko.git] / layout / reftests / transform-3d / mask-layer-3.html
blob58a04a45abe653ee76086b0e750565a534963bcd
1 <!DOCTYPE html>
2 <html lang="en">
3 <meta charset="utf-8">
4 <title>border-radius should work correctly for elements with preserve-3d</title>
6 <style>
8 #a {
9 position: relative;
10 width: 300px;
11 height: 300px;
12 border-radius: 10px;
13 overflow: hidden;
14 background: red;
17 #b {
18 height: 100%;
19 transform-style: preserve-3d;
20 transform: rotateX(90deg);
23 #c {
24 position: relative;
25 background: green;
26 height: 100%;
27 width: 10000px;
28 transform: rotateX(90deg);
30 </style>
32 <div id="a">
33 <div id="b">
34 <div id="c"></div>
35 </div>
36 </div>