layout/reftests/w3c-css/submitted/multicol3/moz-multicol3-column-balancing-break-inside-avoid-1-ref.html

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.

     1 <!DOCTYPE HTML>
     2 <html><head>
     3   <title>CSS Test: Balancing Overflow, page-break-inside:avoid</title>
     4   <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=685012">
     5   <meta name="flags" content="paged">
     6   <meta charset="utf-8">
     7   <style type="text/css">
     8 @page { size:5in 3in; margin:0.5in; }
    10         html,body {
    11             color:black; background-color:white; font-size:16px; padding:0; margin:0;
    12         }
    14   .colset {
    15     -moz-column-count: 3;
    16     -moz-column-gap: 0;
    17     border: solid silver;
    18     width: 9em;
    19   }
    20   p { margin: 0; }
    21   .short { height: 5px; }
    22   .short p { }
    24     </style>
    25 </head>
    26 <body>
    28 <div class="colset">
    29 <p>one<br>&nbsp;&nbsp;&nbsp;&nbsp;</p>
    30 <p>two three</p>
    31 <p>four five</p>
    32 </div>
    34 <div class="colset">
    35   <p>one two three four five</p>
    36 </div>
    38 <div class="colset">
    39 one two three four five
    40 </div>
    42 <div class="colset">
    43   <div class="short"><p>one two three four five</p></div>
    44 </div>
    46 </body>
    47 </html>

mercurial