Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <!--
2 Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/licenses/publicdomain/
5 bug 463204
6 -->
7 <html>
8 <head>
9 <style>
10 span {
11 background-image: -moz-element(#g);
12 display: inline-block;
13 margin-left: 0.6px;
14 }
15 #repeat {
16 width: 38px;
17 height: 38px;
18 background-repeat: repeat;
19 }
20 #norepeat {
21 width: 19px;
22 height: 19px;
23 background-repeat: no-repeat;
24 background-position: center center;
25 }
26 </style>
27 </head>
28 <body>
29 <span id="repeat"></span><br/>
30 <span id="norepeat"></span>
31 <div style="overflow:hidden; height:0px">
32 <div id="g" style="width:17px; height:17px; border:1px solid red;
33 background: orange;"></div>
34 </div>
35 </body>
36 </html>