Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <!doctype html> |
michael@0 | 2 | <html><head><title>Colored strikethrough test</title> |
michael@0 | 3 | <style> |
michael@0 | 4 | /* In order to ensure consistency between the HTML reference and XUL |
michael@0 | 5 | test case, we explicitly specify all relevant style properties. */ |
michael@0 | 6 | * { |
michael@0 | 7 | margin: 0; |
michael@0 | 8 | padding: 0; |
michael@0 | 9 | border: none; |
michael@0 | 10 | background-color: transparent; |
michael@0 | 11 | } |
michael@0 | 12 | body { |
michael@0 | 13 | padding: 8px; |
michael@0 | 14 | background-color: white; |
michael@0 | 15 | } |
michael@0 | 16 | span { |
michael@0 | 17 | color: black; |
michael@0 | 18 | font: normal normal normal 12pt/14pt serif; |
michael@0 | 19 | display: block; |
michael@0 | 20 | height: 30px; |
michael@0 | 21 | } |
michael@0 | 22 | div#under { |
michael@0 | 23 | text-decoration: underline; |
michael@0 | 24 | color: orange; |
michael@0 | 25 | } |
michael@0 | 26 | div#strike { |
michael@0 | 27 | text-decoration: line-through; |
michael@0 | 28 | color: blue; |
michael@0 | 29 | } |
michael@0 | 30 | </style> |
michael@0 | 31 | </head> |
michael@0 | 32 | <body> |
michael@0 | 33 | <div><span>The next three lines should all have:</span></div> |
michael@0 | 34 | <div id="under"> |
michael@0 | 35 | <div id="strike"> |
michael@0 | 36 | <span>No overline.</span> |
michael@0 | 37 | <span>Orange underline.</span> |
michael@0 | 38 | <span>Blue strikethrough.</span> |
michael@0 | 39 | </div> |
michael@0 | 40 | </div> |
michael@0 | 41 | </body></html> |