2 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
3 <link rel=
"stylesheet" href=
"/tests/SimpleTest/test.css">
4 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=1370646">Mozilla Bug
1370646</a>
6 <svg xmlns=
"http://www.w3.org/2000/svg" width=
"440" height=
"100" viewBox=
"0 0 440 100">
8 <tspan id=
"a" style=
"font-size:100px">3</tspan>
11 <tspan id=
"b" style=
"font-size:100px">3</tspan>
12 <tspan style=
"font-size:0.1px">0</tspan>
16 <script type=
"application/javascript">
17 SimpleTest.waitForExplicitFinish();
19 let alen = document.getElementById(
"a").getComputedTextLength(),
20 blen = document.getElementById(
"b").getComputedTextLength();
22 SimpleTest.isfuzzy(alen, blen,
5,
"lengths should be close");