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.

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

mercurial