Thu, 15 Jan 2015 15:59:08 +0100
Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
1 <html>
2 </head>
3 <style type="text/css">
4 .stage{
5 -moz-perspective: 100px;
6 -moz-perspective-origin: 25% 25%;
7 height:100px;
8 width:100px;
9 margin:5px;
10 padding:5px;
11 border:5px solid gray;
12 }
14 .box {
15 -moz-transform:rotateX(45deg);
16 height:70px;
17 width:70px;
18 background:green;
19 margin:5px;
20 padding:5px;
21 border:5px solid black;
22 }
24 </style>
25 </head>
26 <body>
27 <div class="stage">
28 <div class="box"></div>
29 </div>
30 </body>
31 </html>