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 <?xml version="1.0"?>
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>border</title>
5 <style type="text/css">
7 body {
8 filter: url('../filters.svg#NonWhiteToBlack');
9 }
11 body > div {
12 /* filter doesn't change alpha */
13 background: white;
14 }
16 div.test {
17 width: 154px;
18 height: 142px;
19 border-radius: 72px;
20 background: black;
21 }
23 </style>
24 </head>
25 <body>
26 <div>
27 <div class="test"></div>
28 </div>
29 <svg xmlns="http://www.w3.org/2000/svg"
30 xmlns:xlink="http://www.w3.org/1999/xlink"
31 version="1.1">
32 <!-- use an empty g to force filters.svg to load before onload -->
33 <use xlink:href="../filters.svg#empty" />
34 </svg>
35 </body>
36 </html>