tor-browser

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

hyphen-as-minus-sign-ref.html (512B)


      1 <!DOCTYPE html>
      2 <title>hyphen operator is rendered as a minus sign</title>
      3 <meta charset="utf-8"/>
      4 <style>
      5  math {
      6    font-size: 64pt;
      7  }
      8  .box {
      9    position: absolute;
     10    left: 2em;
     11    top: 2em;
     12    border: 1px solid lightgreen;
     13  }
     14 </style>
     15 <body>
     16  <p>This test passes if you see a green rectangle and no red.</p>
     17  <math class="box" style="position: absolute; color: red"><mo></mo></math>
     18  <math class="box" style="position: absolute; color: green; background: green;"><mo></mo></math>
     19 </body>