layout/reftests/bugs/456147-ref.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

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>

mercurial