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

Fri, 16 Jan 2015 04:50:19 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 04:50:19 +0100
branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
permissions
-rw-r--r--

Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32

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

mercurial