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.
1 <!-- Any copyright is dedicated to the Public Domain.
2 - http://creativecommons.org/publicdomain/zero/1.0/ -->
3 <!DOCTYPE HTML>
4 <html><head>
5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6 <title>Testcase for bug 672944</title>
7 <style type="text/css">
8 @font-face {
9 font-family: DejaVuSansMono;
10 src: url(../fonts/DejaVuSansMono.woff),url(DejaVuSansMono.woff);
11 }
12 html,body {
13 color:black; background-color:white; font-size:16px; padding:0; margin:0; font-family:DejaVuSansMono;
14 }
16 .bacon {
17 white-space: nowrap;
18 text-overflow: clip;
19 overflow: hidden;
20 width: 30ch;
21 display: -moz-box;
22 background: lime;
23 margin-bottom: 1em;
24 }
26 .auto {
27 overflow-x: auto;
28 width: 29.5ch;
29 padding-bottom: 2ch;
30 }
31 .scroll {
32 overflow: auto;
33 padding: 2ch;
34 border: 3px solid black;
35 }
36 .scroll2 {
37 overflow: auto;
38 padding: 3ch;
39 }
40 .scroll3 {
41 overflow: auto;
42 padding: 2ch;
43 text-indent: -3ch;
44 }
45 .scroll4 {
46 overflow: auto;
47 padding: 2ch 0.2ch;
48 }
49 span { background-color:white; position: relative; }
50 ml3 {position: absolute; left:29ch; }
52 #block-hover {
53 position:fixed;
54 top:0;left:0;width:100%;height:100%;
55 }
56 </style>
57 </head>
58 <body>
60 <div style="float:right;" dir="rtl">
61 <div class="bacon"><span>1Beef hamburger bacon tri-tip… jowl biltong tail ribeye ham</span></div><br>
62 <div class="bacon auto"><span>2Beef hamburger bacon tri- ipJOWLBILTONG tail ribeye ham</span></div><br>
63 <div class="bacon scroll"><span>3Beef hamburger bacon tri pJOWLBILTONG tail ribeye ham</span></div><br>
64 <div class="bacon scroll2"><span>4Beef hamburger bacon tr pJOWLBILTONG tail ribeye ham</span></div><br>
65 <div class="bacon scroll3"><span>5Beef hamburger bacon -tipJOWLBILTONG tail ribeye ham</span></div><br>
66 <div class="bacon scroll4"><span>6Beef hamburger bacon tri- pJOWLBILTONG tail ribeye ham</span></div><br>
67 </div>
69 <div>
70 <div class="bacon"><span>1Beef hamburger bacon tri-tip… jowl biltong tail ribeye ham</span></div><br>
71 <div class="bacon auto"><span>2Beef hamburger bacon tri-tip OWLBILTONG tail ribeye ham</span></div><br>
72 <div class="bacon scroll"><span>3Beef hamburger bacon tri-tipJ WLBILTONG tail ribeye ham</span></div><br>
73 <div class="bacon scroll2"><span>4Beef hamburger bacon tri-tipJO LBILTONG tail ribeye ham</span></div><br>
74 <div class="bacon scroll3"><span>5Beef hamburger bacon tri-tipJOWL ILTONG tail ribeye ham</span></div><br>
75 <div class="bacon scroll4"><span>6Beef hamburger bacon tri-ti JOWLBILTONG tail ribeye ham</span></div><br>
76 </div>
78 <div id="block-hover"></div>
79 </body>
80 </html>