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.
michael@0 | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <style> |
michael@0 | 5 | body > div { overflow: visible } |
michael@0 | 6 | .test { height: 20px; background: green } |
michael@0 | 7 | #test2 { padding: 0 100px } |
michael@0 | 8 | #test3 { padding: 0 100px; width: 250px } |
michael@0 | 9 | #test4 { padding: 0 10% } |
michael@0 | 10 | #test5 { padding: 0 10%; width: 250px } |
michael@0 | 11 | body { width: 500px } |
michael@0 | 12 | </style> |
michael@0 | 13 | </head> |
michael@0 | 14 | |
michael@0 | 15 | <body> |
michael@0 | 16 | <div id="test1"> |
michael@0 | 17 | <div class="test"></div> |
michael@0 | 18 | </div> |
michael@0 | 19 | <div id="test2"> |
michael@0 | 20 | <div class="test"></div> |
michael@0 | 21 | </div> |
michael@0 | 22 | <div id="test3"> |
michael@0 | 23 | <div class="test"></div> |
michael@0 | 24 | </div> |
michael@0 | 25 | <div id="test4"> |
michael@0 | 26 | <div class="test"></div> |
michael@0 | 27 | </div> |
michael@0 | 28 | <div id="test5"> |
michael@0 | 29 | <div class="test"></div> |
michael@0 | 30 | </div> |
michael@0 | 31 | </body> |
michael@0 | 32 | </html> |