tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

svg-glyph-invalid.html (569B)


      1 <html>
      2  <head>
      3    <title>Test that invalid XML in the 'SVG ' table is rejected</title>
      4    <style>
      5      @font-face {
      6        font-family : 'Liberation';
      7        src : url(resources/rubbish.woff);
      8      }
      9      body {
     10        font-family : 'Liberation';
     11        font-size : 200px;
     12      }
     13    </style>
     14  </head>
     15  <!--
     16        The font file resources/rubbish.woff contains an SVG table which
     17      does not contain valid XML. This test makes sure it falls back
     18      on rendering the text using the truetype outlines.
     19  -->
     20  <body>
     21    LML&#xfe01;
     22  </body>
     23 </html>