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//EN"> |
michael@0 | 2 | <html class="reftest-print"> |
michael@0 | 3 | <style type="text/css"> |
michael@0 | 4 | html, body { |
michael@0 | 5 | margin: 0; |
michael@0 | 6 | padding: 0; |
michael@0 | 7 | height: 100%; |
michael@0 | 8 | } |
michael@0 | 9 | |
michael@0 | 10 | .step { |
michael@0 | 11 | height: 1in; |
michael@0 | 12 | border: 15px aqua; |
michael@0 | 13 | border-style: none solid; |
michael@0 | 14 | } |
michael@0 | 15 | .float { |
michael@0 | 16 | float: right; |
michael@0 | 17 | width: 15px; |
michael@0 | 18 | background: aqua; |
michael@0 | 19 | height: 4in; |
michael@0 | 20 | } |
michael@0 | 21 | .L { |
michael@0 | 22 | float: left; |
michael@0 | 23 | } |
michael@0 | 24 | |
michael@0 | 25 | .container { |
michael@0 | 26 | width: 100%; |
michael@0 | 27 | background: red; |
michael@0 | 28 | } |
michael@0 | 29 | |
michael@0 | 30 | .clear { |
michael@0 | 31 | clear: left; |
michael@0 | 32 | height: 0; |
michael@0 | 33 | background: red; |
michael@0 | 34 | } |
michael@0 | 35 | .bar { |
michael@0 | 36 | border-bottom: orange solid; |
michael@0 | 37 | } |
michael@0 | 38 | </style> |
michael@0 | 39 | |
michael@0 | 40 | <div class="step"></div> |
michael@0 | 41 | <div class="container"> |
michael@0 | 42 | <div class="float L"></div> |
michael@0 | 43 | <div class="float R"></div> |
michael@0 | 44 | </div> |
michael@0 | 45 | <div class="clear"><div class="bar"></div></div> |