layout/reftests/bugs/379349-2-ref.xhtml

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

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 XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
michael@0 2 <html xmlns="http://www.w3.org/1999/xhtml">
michael@0 3 <head>
michael@0 4 <title>CSS3 Multi-column Layout Test Suite: Overflow Pagination (Interlaced [Simplified])</title>
michael@0 5 <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/>
michael@0 6 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#the-height-property"/>
michael@0 7 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#length-units"/>
michael@0 8 <style type="text/css">
michael@0 9 body, html {
michael@0 10 margin: 0;
michael@0 11 padding: 0;
michael@0 12 }
michael@0 13
michael@0 14 .following {
michael@0 15 margin: 0 0 .5in;
michael@0 16 height: .5in;
michael@0 17 background: white;
michael@0 18
michael@0 19 font-size: 10pt;
michael@0 20 line-height: 10pt;
michael@0 21 color: navy;
michael@0 22 }
michael@0 23 .fno1 {
michael@0 24 position: absolute;
michael@0 25 top: 1.5in; left: 0;
michael@0 26 width: 100pt;
michael@0 27 border-top: 4px solid blue;
michael@0 28 }
michael@0 29 .fno2 {
michael@0 30 position: absolute;
michael@0 31 top: .5in; left: 100pt;
michael@0 32 width: 100pt;
michael@0 33 }
michael@0 34 .overflow {
michael@0 35 height: 4in;
michael@0 36 width: 200pt;
michael@0 37 border-bottom: 4px solid blue;
michael@0 38 }
michael@0 39 body {
michael@0 40 height: 2.5in;
michael@0 41 width: 300pt;
michael@0 42 -moz-column-width: 100pt;
michael@0 43 -moz-column-gap: 0;
michael@0 44 -moz-column-fill: auto;
michael@0 45 border: solid gray;
michael@0 46 position: relative;
michael@0 47 }
michael@0 48 </style>
michael@0 49 </head>
michael@0 50 <body>
michael@0 51 <div class="overflow">
michael@0 52 </div>
michael@0 53 <div class="following fno1">
michael@0 54 This paragraph must be in the first column.
michael@0 55 There must be no red on any page.
michael@0 56 </div>
michael@0 57 <p class="following fno2">
michael@0 58 This paragraph must be in the second column.
michael@0 59 There must be an unbroken blue line across
michael@0 60 all three columns.
michael@0 61 </p>
michael@0 62 </body>
michael@0 63 </html>

mercurial