layout/reftests/bugs/23604-2-ref.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 <html>
     2 <head>
     3 	<style type="text/css">
     4 		body {
     5 			font-family: sans-serif;
     6                         background: lightblue; }
     8 		.a li:first-letter {
     9 			font-family: serif;
    10 			font-weight: bold; }
    12 		.b li:first-letter {
    13 			color: red; }
    15 		.c li:first-letter {
    16 			background: red; }
    18 		.d li:first-letter {
    19 			font-size: 1.5em; }
    20 	</style>
    21 </head>
    23 <body>
    24 	<ul class="a">
    25 		<li><a>Lorem ipsum dolor sit amet</a></li>
    26 	</ul>
    27 	<ul class="b">
    28 		<li><del>Lorem ipsum dolor sit amet</del></li>
    29 	</ul>
    30 	<ul class="c">
    31 		<li><em>Lorem ipsum dolor sit amet</em></li>
    32 	</ul>
    33 	<ul class="d">
    34 		<li><span>Lorem ipsum dolor sit amet</span></li>
    35 	</ul>
    36 </body>
    37 </html>

mercurial