hyphen-as-minus-sign.html (646B)
1 <!DOCTYPE html> 2 <title>hyphen operator is rendered as a minus sign</title> 3 <link rel="match" href="hyphen-as-minus-sign-ref.html"/> 4 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1904220"/> 5 <meta charset="utf-8"/> 6 <style> 7 math { 8 font-size: 64pt; 9 } 10 .box { 11 position: absolute; 12 left: 2em; 13 top: 2em; 14 border: 1px solid lightgreen; 15 } 16 </style> 17 <body> 18 <p>This test passes if you see a green rectangle and no red.</p> 19 <math class="box" style="position: absolute; color: red"><mo>−</mo></math> 20 <math class="box" style="position: absolute; color: green; background: green;"><mo>-</mo></math> 21 </body>