Bug 1535077 - Switch to using Ref and PureComponent in the SearchBox component. r...
[gecko.git] / layout / reftests / bugs / 1483649-1-ref.xul
blobe428895b77c62c62298db937fc0c3ba332959563
1 <?xml version="1.0"?>
2 <!DOCTYPE window>
4 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
6 <style type="text/css" xmlns="http://www.w3.org/1999/xhtml"><![CDATA[
7 #container {
8 position: relative;
9 left: 500px;
10 display: inline;
13 #first {
14 position: relative;
15 top: 0px;
16 left: 0px;
17 width: 100px;
18 height: 100px;
19 transform: scaleX(-1);
20 background: red;
23 #second {
24 position: relative;
25 top: 50px;
26 left: -100px;
27 width: 100px;
28 height: 100px;
29 overflow: hidden;
32 #transformed {
33 width: 50px;
34 height: 50px;
35 transform: scaleX(-1)
37 ]]></style>
39 <box id="container">
40 <box id="first"></box>
41 <box id="second">
42 <image id="transformed"/>
43 </box>
44 </box>
45 </window>