Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <!-- |
michael@0 | 3 | Any copyright is dedicated to the Public Domain. |
michael@0 | 4 | http://creativecommons.org/publicdomain/zero/1.0/ |
michael@0 | 5 | --> |
michael@0 | 6 | <html><head> |
michael@0 | 7 | <meta charset="utf-8"> |
michael@0 | 8 | <title>Bug 942017</title> |
michael@0 | 9 | |
michael@0 | 10 | <style type="text/css"> |
michael@0 | 11 | @font-face { |
michael@0 | 12 | font-family: DejaVuSansMono; |
michael@0 | 13 | src: url(../fonts/DejaVuSansMono.woff),url(DejaVuSansMono.woff); |
michael@0 | 14 | } |
michael@0 | 15 | |
michael@0 | 16 | html,body { |
michael@0 | 17 | color:black; background-color:white; font-size:24px; font-family:DejaVuSansMono; padding:20px; margin:0; |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | div { |
michael@0 | 21 | float: left; |
michael@0 | 22 | padding: 1em 2em; |
michael@0 | 23 | outline: 2px solid black; |
michael@0 | 24 | background: black; |
michael@0 | 25 | list-style-type: decimal; |
michael@0 | 26 | } |
michael@0 | 27 | |
michael@0 | 28 | div.a { line-height: 0.5em; } |
michael@0 | 29 | div.b { line-height: 2em; } |
michael@0 | 30 | div.i { list-style-position: inside; } |
michael@0 | 31 | |
michael@0 | 32 | li { outline:1px solid green; padding:0; margin:0; letter-spacing:0; } |
michael@0 | 33 | |
michael@0 | 34 | </style> |
michael@0 | 35 | </head> |
michael@0 | 36 | <body> |
michael@0 | 37 | |
michael@0 | 38 | <div class="a"> |
michael@0 | 39 | <li>X</li> |
michael@0 | 40 | <li>X</li> |
michael@0 | 41 | </div> |
michael@0 | 42 | |
michael@0 | 43 | <br clear="all"> |
michael@0 | 44 | |
michael@0 | 45 | <div class="b"> |
michael@0 | 46 | <li>X</li> |
michael@0 | 47 | <li>X</li> |
michael@0 | 48 | </div> |
michael@0 | 49 | |
michael@0 | 50 | <br clear="all"> |
michael@0 | 51 | |
michael@0 | 52 | <div class="a i"> |
michael@0 | 53 | <li>X</li> |
michael@0 | 54 | <li>X</li> |
michael@0 | 55 | </div> |
michael@0 | 56 | |
michael@0 | 57 | <br clear="all"> |
michael@0 | 58 | |
michael@0 | 59 | <div class="b i"> |
michael@0 | 60 | <li>X</li> |
michael@0 | 61 | <li>X</li> |
michael@0 | 62 | </div> |
michael@0 | 63 | |
michael@0 | 64 | </body> |
michael@0 | 65 | </html> |