21 lines
646 B
HTML
21 lines
646 B
HTML
<!DOCTYPE html>
|
||
<title>hyphen operator is rendered as a minus sign</title>
|
||
<link rel="match" href="hyphen-as-minus-sign-ref.html"/>
|
||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1904220"/>
|
||
<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>
|