Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
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" class="reftest-wait"> |
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 | .container { |
michael@0 | 14 | height: .5in; |
michael@0 | 15 | } |
michael@0 | 16 | .overflow { |
michael@0 | 17 | border-bottom: solid 4px red; |
michael@0 | 18 | } |
michael@0 | 19 | .following { |
michael@0 | 20 | margin: 0 0 .5in; |
michael@0 | 21 | height: .5in; |
michael@0 | 22 | background: white; |
michael@0 | 23 | |
michael@0 | 24 | font-size: 10pt; |
michael@0 | 25 | line-height: 10pt; |
michael@0 | 26 | color: navy; |
michael@0 | 27 | } |
michael@0 | 28 | .fno1 { |
michael@0 | 29 | margin: 0; |
michael@0 | 30 | border-top: 4px solid blue; |
michael@0 | 31 | } |
michael@0 | 32 | .no1 .overflow { |
michael@0 | 33 | height: 800%; |
michael@0 | 34 | } |
michael@0 | 35 | .no2 .overflow { |
michael@0 | 36 | height: 1200%; |
michael@0 | 37 | } |
michael@0 | 38 | .no3 .overflow { |
michael@0 | 39 | height: 600%; |
michael@0 | 40 | border-bottom-color: blue; |
michael@0 | 41 | } |
michael@0 | 42 | .no4 .overflow { |
michael@0 | 43 | height: 800%; |
michael@0 | 44 | border-bottom-color: blue; |
michael@0 | 45 | } |
michael@0 | 46 | body { |
michael@0 | 47 | height: 2.5in; |
michael@0 | 48 | width: 300pt; |
michael@0 | 49 | -moz-column-width: 100pt; |
michael@0 | 50 | -moz-column-gap: 0; |
michael@0 | 51 | -moz-column-fill: auto; |
michael@0 | 52 | border: solid gray; |
michael@0 | 53 | } |
michael@0 | 54 | </style> |
michael@0 | 55 | </head> |
michael@0 | 56 | <body onload="document.getElementById('tester1').style.height = '9in'; |
michael@0 | 57 | document.getElementById('tester1').offsetHeight; |
michael@0 | 58 | document.getElementById('tester2').style.height = '29in'; |
michael@0 | 59 | document.getElementById('tester2').offsetHeight; |
michael@0 | 60 | document.getElementById('tester1').style.height = '.5in'; |
michael@0 | 61 | document.getElementById('tester1').offsetHeight; |
michael@0 | 62 | document.getElementById('tester2').style.height = '.5in'; |
michael@0 | 63 | document.documentElement.className = ''"> |
michael@0 | 64 | <div class="container no1"> |
michael@0 | 65 | <div class="overflow"> |
michael@0 | 66 | </div> |
michael@0 | 67 | </div> |
michael@0 | 68 | <div class="container no2"> |
michael@0 | 69 | <div class="overflow"> |
michael@0 | 70 | </div> |
michael@0 | 71 | </div> |
michael@0 | 72 | <div class="container no3"> |
michael@0 | 73 | <div class="overflow"> |
michael@0 | 74 | </div> |
michael@0 | 75 | </div> |
michael@0 | 76 | <div class="following" id="tester1"> |
michael@0 | 77 | <p class="fno1"> |
michael@0 | 78 | This paragraph must be in the first column. |
michael@0 | 79 | There must be no red on any page. |
michael@0 | 80 | </p> |
michael@0 | 81 | </div> |
michael@0 | 82 | <div class="container no4"> |
michael@0 | 83 | <div class="overflow"> |
michael@0 | 84 | </div> |
michael@0 | 85 | </div> |
michael@0 | 86 | <p class="following" id="tester2"> |
michael@0 | 87 | This paragraph must be in the second column. |
michael@0 | 88 | There must be an unbroken blue line across |
michael@0 | 89 | all three columns. |
michael@0 | 90 | </p> |
michael@0 | 91 | </body> |
michael@0 | 92 | </html> |