Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | <!-- |
michael@0 | 2 | Any copyright is dedicated to the Public Domain. |
michael@0 | 3 | http://creativecommons.org/licenses/publicdomain/ |
michael@0 | 4 | --> |
michael@0 | 5 | <html><head> |
michael@0 | 6 | <title>text-overflow: Quirks mode line height</title> |
michael@0 | 7 | <style type="text/css"> |
michael@0 | 8 | @font-face { |
michael@0 | 9 | font-family: DejaVuSansMono; |
michael@0 | 10 | src: url(../fonts/DejaVuSansMono.woff); |
michael@0 | 11 | } |
michael@0 | 12 | html,body { |
michael@0 | 13 | color:black; background-color:white; font-size:16px; padding:0; margin:0; font-family:DejaVuSansMono; |
michael@0 | 14 | } |
michael@0 | 15 | |
michael@0 | 16 | .test { |
michael@0 | 17 | overflow:hidden; |
michael@0 | 18 | |
michael@0 | 19 | float:left; |
michael@0 | 20 | white-space:pre; |
michael@0 | 21 | margin-left:1em; |
michael@0 | 22 | margin-bottom:1em; |
michael@0 | 23 | font-size:24px; |
michael@0 | 24 | color:blue; |
michael@0 | 25 | border:1px solid black; |
michael@0 | 26 | position:relative; |
michael@0 | 27 | } |
michael@0 | 28 | span { |
michael@0 | 29 | font-size:16px; |
michael@0 | 30 | color:black; |
michael@0 | 31 | } |
michael@0 | 32 | .rlo { |
michael@0 | 33 | unicode-bidi: bidi-override; direction:rtl; |
michael@0 | 34 | } |
michael@0 | 35 | .lro { |
michael@0 | 36 | unicode-bidi: bidi-override; |
michael@0 | 37 | } |
michael@0 | 38 | .rtl { |
michael@0 | 39 | direction:rtl; |
michael@0 | 40 | } |
michael@0 | 41 | .ltr { |
michael@0 | 42 | direction:ltr; |
michael@0 | 43 | } |
michael@0 | 44 | .t1 { width:4em; } |
michael@0 | 45 | |
michael@0 | 46 | m { font-size:24px; color:blue; line-height:8px; } |
michael@0 | 47 | |
michael@0 | 48 | </style> |
michael@0 | 49 | |
michael@0 | 50 | </head><body> |
michael@0 | 51 | |
michael@0 | 52 | <div class="test t1"><span>0123456|</span><m>…</m></div> |
michael@0 | 53 | <div class="test rtl rlo t1"><span>0123456|</span><m>…</m></div> |
michael@0 | 54 | |
michael@0 | 55 | |
michael@0 | 56 | </body> |
michael@0 | 57 | </html> |