layout/reftests/columns/column-balancing-nested-000.html

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

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 <!DOCTYPE html>
michael@0 6 <html lang="en-US">
michael@0 7 <head>
michael@0 8 <title>Testing nested balancing column sets</title>
michael@0 9 <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=822053">
michael@0 10 <style type="text/css">
michael@0 11 html,body {
michael@0 12 color:black; background-color:white; font-size:16px; padding:0; margin:0;
michael@0 13 }
michael@0 14
michael@0 15 .colset {
michael@0 16 -moz-column-count: 2;
michael@0 17 -moz-column-gap: 1px;
michael@0 18 -moz-column-rule: 1px solid black;
michael@0 19 border: solid silver;
michael@0 20 margin-bottom:1em;
michael@0 21 width:30ch;
michael@0 22 }
michael@0 23 p { margin: 0; }
michael@0 24 </style>
michael@0 25 </head>
michael@0 26 <body>
michael@0 27 <div class="colset">
michael@0 28 <p>one one one one one</p>
michael@0 29 <div class="colset">
michael@0 30 <p>two two two two two</p>
michael@0 31 </div>
michael@0 32 </div>
michael@0 33 <div class="colset">
michael@0 34 <p>one one one one one</p>
michael@0 35 <div class="colset">
michael@0 36 <p>two two two two two</p>
michael@0 37 <div class="colset">
michael@0 38 <p>three three three three three</p>
michael@0 39 </div>
michael@0 40 </div>
michael@0 41 </div>
michael@0 42 <div class="colset">
michael@0 43 <p>one one one one one</p>
michael@0 44 <div class="colset">
michael@0 45 <p>two two two two two</p>
michael@0 46 <div class="colset">
michael@0 47 <p>three three</p>
michael@0 48 <div class="colset">
michael@0 49 <p>four four four four four</p>
michael@0 50 </div>
michael@0 51 </div>
michael@0 52 </div>
michael@0 53 </div>
michael@0 54 </body>
michael@0 55 </html>

mercurial