layout/reftests/bugs/942017.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     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>
    10     <style type="text/css">
    11 @font-face {
    12   font-family: DejaVuSansMono;
    13   src: url(../fonts/DejaVuSansMono.woff),url(DejaVuSansMono.woff);
    14 }
    16   html,body {
    17       color:black; background-color:white; font-size:24px; font-family:DejaVuSansMono; padding:20px; margin:0;
    18   }
    20   div {
    21     float: left;
    22     padding: 1em 2em;
    23     outline: 2px solid black;
    24     background: black;
    25     list-style-type: decimal;
    26   }
    28   div.a { line-height: 0.5em; }
    29   div.b { line-height: 2em; }
    30   div.i { list-style-position: inside; }
    32   li { outline:1px solid green; padding:0; margin:0; letter-spacing:0; }
    34     </style>
    35 </head>
    36 <body>
    38         <div class="a">
    39           <li>X</li>
    40           <li>X</li>
    41         </div>
    43 <br clear="all">
    45         <div class="b">
    46           <li>X</li>
    47           <li>X</li>
    48         </div>
    50 <br clear="all">
    52         <div class="a i">
    53           <li>X</li>
    54           <li>X</li>
    55         </div>
    57 <br clear="all">
    59         <div class="b i">
    60           <li>X</li>
    61           <li>X</li>
    62         </div>
    64 </body>
    65 </html>

mercurial