viewBox-scaling-text-001.html (724B)
1 <!DOCTYPE html> 2 <head> 3 <meta charset="utf-8"> 4 <meta name="assert" href="1px-tall-text should be visible when scaled up via the SVG viewBox attribute"> 5 <title>Testcase for text scaled via SVG viewBox</title> 6 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> 7 <link rel="help" href="https://www.w3.org/TR/SVG/coords.html#ViewBoxAttribute"> 8 <link rel="match" href="support/viewBox-scaling-text-001-ref.html"> 9 <style> 10 svg { 11 width: 100px; 12 height: 100px; 13 background: lightgray; 14 overflow: visible; 15 } 16 text { 17 font: 1px/1 monospace; 18 } 19 </style> 20 </head> 21 <body> 22 <svg viewBox="0 0 1 1"> 23 <text x="0" y="1">X̂̂̂̂̂̂</text> 24 </svg> 25 </body>