Bug 1535077 - Switch to using Ref and PureComponent in the SearchBox component. r...
[gecko.git] / layout / reftests / bugs / bug1472465-1-ref.html
blob7ca316a33661c494f1aff011fc3ff44ab04245e0
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5 <title>Bug 1472465</title>
6 <style type="text/css">
7 #container {
8 border: 1px solid;
9 width: 500px;
10 height: 500px;
11 overflow: hidden;
14 #box {
15 opacity: 1.0;
16 position: absolute;
17 top: 100px
18 left: 100px;
19 z-index:1;
20 background-color: green;
21 width: 100px;
22 height: 100px;
25 #bg {
26 position:relative;
27 width: 2500px;
28 height: 2500px;
29 left: 0px;
30 top: 0px;
32 </style>
34 </head>
35 <body>
36 <div id="container">
37 <div id="bg">
38 <div id="box">
39 Text to force layer state to inactive, that will get flattened.
40 </div>
41 </div>
42 </div>
44 </body>
45 </html>