942017-ref.html (1319B)
1 <!DOCTYPE HTML> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <html><head> 7 <meta charset="utf-8"> 8 <title>Bug 942017</title> 9 10 <style type="text/css"> 11 @font-face { 12 font-family: DejaVuSansMono; 13 src: url(../fonts/DejaVuSansMono.woff),url(DejaVuSansMono.woff); 14 } 15 16 html,body { 17 color:black; background-color:white; font-size:24px; font-family:DejaVuSansMono; padding:20px; margin:0; 18 } 19 20 div { 21 float: left; 22 padding: 1em 2em; 23 outline: 2px solid black; 24 background: black; 25 } 26 27 div.a { line-height: 0.5em; } 28 div.b { line-height: 2em; } 29 div.i l { margin-left:2.84ch; } 30 31 l { display:block; outline:1px solid green; width:1ch; direction:rtl; white-space:nowrap; } 32 x { display:inline-block; width:2.84ch; height:1px; vertical-align:top; } 33 </style> 34 </head> 35 <body> 36 <div class="a"> 37 <l>X<x></x></l> 38 <l>X<x></x></l> 39 </div> 40 41 <br clear="all"> 42 43 <div class="b"> 44 <l>X<x></x></l> 45 <l>X<x></x></l> 46 </div> 47 48 <br clear="all"> 49 50 <div class="a i"> 51 <l>X<x></x></l> 52 <l>X<x></x></l> 53 </div> 54 55 <br clear="all"> 56 57 <div class="b i"> 58 <l>X<x></x></l> 59 <l>X<x></x></l> 60 </div> 61 62 </body> 63 </html>