Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <title>Bug 746015: Off-screen overflow column rules are not properly drawn.</title> |
michael@0 | 5 | <style type="text/css"> |
michael@0 | 6 | * { |
michael@0 | 7 | margin: 0 0; |
michael@0 | 8 | padding: 0 0; |
michael@0 | 9 | } |
michael@0 | 10 | |
michael@0 | 11 | body,html { |
michael@0 | 12 | padding: 0 0; |
michael@0 | 13 | margin: 0 0; |
michael@0 | 14 | line-height: 1.0; |
michael@0 | 15 | } |
michael@0 | 16 | |
michael@0 | 17 | div.column1 { |
michael@0 | 18 | display: inline-block; |
michael@0 | 19 | width: 180px; |
michael@0 | 20 | height: 175px; |
michael@0 | 21 | vertical-align: top; |
michael@0 | 22 | white-space: no-wrap; |
michael@0 | 23 | } |
michael@0 | 24 | |
michael@0 | 25 | div.content { |
michael@0 | 26 | width: 180px; |
michael@0 | 27 | height: 175px; |
michael@0 | 28 | background: blue; |
michael@0 | 29 | } |
michael@0 | 30 | |
michael@0 | 31 | div.column2 { |
michael@0 | 32 | display: inline-block; |
michael@0 | 33 | width: 180px; |
michael@0 | 34 | height: 175px; |
michael@0 | 35 | vertical-align: top; |
michael@0 | 36 | } |
michael@0 | 37 | |
michael@0 | 38 | div.colgap { |
michael@0 | 39 | display: inline-block; |
michael@0 | 40 | background-color: green; |
michael@0 | 41 | width: 10px; |
michael@0 | 42 | height: 175px; |
michael@0 | 43 | } |
michael@0 | 44 | </style> |
michael@0 | 45 | </head> |
michael@0 | 46 | <body> |
michael@0 | 47 | <div class="column1"><div class="content"></div></div><div class="colgap"></div><div class="column2"><div class="content"></div></div> |
michael@0 | 48 | </body> |
michael@0 | 49 | </html> |