Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <html class="reftest-wait"> |
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 | |
michael@0 | 7 | .a li:first-letter { |
michael@0 | 8 | font-family: serif; |
michael@0 | 9 | font-weight: bold; } |
michael@0 | 10 | |
michael@0 | 11 | .b li:first-letter { |
michael@0 | 12 | color: red; } |
michael@0 | 13 | |
michael@0 | 14 | .c li:first-letter { |
michael@0 | 15 | background: red; } |
michael@0 | 16 | |
michael@0 | 17 | .d li:first-letter { |
michael@0 | 18 | font-size: 1.5em; } |
michael@0 | 19 | </style> |
michael@0 | 20 | <script> |
michael@0 | 21 | function tweak() { |
michael@0 | 22 | document.body.style.background = 'lightblue'; |
michael@0 | 23 | document.documentElement.className = ""; |
michael@0 | 24 | } |
michael@0 | 25 | </script> |
michael@0 | 26 | </head> |
michael@0 | 27 | |
michael@0 | 28 | <body onload="tweak();"> |
michael@0 | 29 | <ul class="a"> |
michael@0 | 30 | <li><a>Lorem ipsum dolor sit amet</a></li> |
michael@0 | 31 | </ul> |
michael@0 | 32 | <ul class="b"> |
michael@0 | 33 | <li><del>Lorem ipsum dolor sit amet</del></li> |
michael@0 | 34 | </ul> |
michael@0 | 35 | <ul class="c"> |
michael@0 | 36 | <li><em>Lorem ipsum dolor sit amet</em></li> |
michael@0 | 37 | </ul> |
michael@0 | 38 | <ul class="d"> |
michael@0 | 39 | <li><span>Lorem ipsum dolor sit amet</span></li> |
michael@0 | 40 | </ul> |
michael@0 | 41 | </body> |
michael@0 | 42 | </html> |