tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

456147-ref.html (855B)


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