layout/reftests/bugs/23604-2.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 class="reftest-wait">
     2 <head>
     3 	<style type="text/css">
     4 		body {
     5 			font-family: sans-serif; }
     7 		.a li:first-letter {
     8 			font-family: serif;
     9 			font-weight: bold; }
    11 		.b li:first-letter {
    12 			color: red; }
    14 		.c li:first-letter {
    15 			background: red; }
    17 		.d li:first-letter {
    18 			font-size: 1.5em; }
    19 	</style>
    20  <script>
    21   function tweak() {
    22     document.body.style.background = 'lightblue';
    23     document.documentElement.className = "";
    24   }
    25  </script>
    26 </head>
    28 <body onload="tweak();">
    29 	<ul class="a">
    30 		<li><a>Lorem ipsum dolor sit amet</a></li>
    31 	</ul>
    32 	<ul class="b">
    33 		<li><del>Lorem ipsum dolor sit amet</del></li>
    34 	</ul>
    35 	<ul class="c">
    36 		<li><em>Lorem ipsum dolor sit amet</em></li>
    37 	</ul>
    38 	<ul class="d">
    39 		<li><span>Lorem ipsum dolor sit amet</span></li>
    40 	</ul>
    41 </body>
    42 </html>

mercurial