font-size-scaling-ref.html (599B)
1 <!DOCTYPE html> 2 <html lang="en-US"> 3 <meta charset="utf-8"> 4 <title>SVG reference: Thai locale should not disrupt font sizing</title> 5 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> 6 7 <style> 8 svg.ref { 9 display: block; 10 margin: 10px; 11 border: 2px solid gray; 12 font: 20px Ahem; 13 } 14 </style> 15 16 <p>All three rectangles should contain similar small black bars:</p> 17 18 <svg class="ref"> 19 <g> 20 <text x="50" y="100">abc</text> 21 </g> 22 </svg> 23 24 <svg class="ref"> 25 <g> 26 <text x="50" y="100">abc</text> 27 </g> 28 </svg> 29 30 <svg class="ref"> 31 <g> 32 <text x="50" y="100">abc</text> 33 </g> 34 </svg>