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 <!doctype html>
2 <html>
3 <head>
4 <title>four stylesheets</title>
5 <link rel="stylesheet" type="text/css" media="scren" href="simple.css"/>
6 <style type="text/css">
7 div {
8 font-size: 2em;
9 }
10 </style>
11 <style type="text/css">
12 span {
13 font-size: 3em;
14 }
15 </style>
16 <style type="text/css">
17 p {
18 font-size: 4em;
19 }
20 </style>
21 </head>
22 <body>
23 <div>four <span>stylesheets</span></div>
24 </body>
25 </html>