1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/456147-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,41 @@ 1.4 +<!doctype html> 1.5 +<html><head><title>Colored strikethrough test</title> 1.6 +<style> 1.7 +/* In order to ensure consistency between the HTML reference and XUL 1.8 + test case, we explicitly specify all relevant style properties. */ 1.9 +* { 1.10 + margin: 0; 1.11 + padding: 0; 1.12 + border: none; 1.13 + background-color: transparent; 1.14 +} 1.15 +body { 1.16 + padding: 8px; 1.17 + background-color: white; 1.18 +} 1.19 +span { 1.20 + color: black; 1.21 + font: normal normal normal 12pt/14pt serif; 1.22 + display: block; 1.23 + height: 30px; 1.24 +} 1.25 +div#under { 1.26 + text-decoration: underline; 1.27 + color: orange; 1.28 +} 1.29 +div#strike { 1.30 + text-decoration: line-through; 1.31 + color: blue; 1.32 +} 1.33 +</style> 1.34 +</head> 1.35 +<body> 1.36 +<div><span>The next three lines should all have:</span></div> 1.37 +<div id="under"> 1.38 +<div id="strike"> 1.39 +<span>No overline.</span> 1.40 +<span>Orange underline.</span> 1.41 +<span>Blue strikethrough.</span> 1.42 +</div> 1.43 +</div> 1.44 +</body></html>