Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            - /mathml/hyphen-as-minus-sign.html - WPT Dashboard Interop Dashboard
 
<!DOCTYPE html>
<title>hyphen operator is rendered as a minus sign</title>
<link rel="match" href="hyphen-as-minus-sign-ref.html"/>
<meta charset="utf-8"/>
<style>
  math {
    font-size: 64pt;
  }
  .box {
    position: absolute;
    left: 2em;
    top: 2em;
    border: 1px solid lightgreen;
  }
</style>
<body>
  <p>This test passes if you see a green rectangle and no red.</p>
  <math class="box" style="position: absolute; color: red"><mo>−</mo></math>
  <math class="box" style="position: absolute; color: green; background: green;"><mo>-</mo></math>
</body>