tor-browser

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

frac-legacy-bevelled-attribute.tentative.html (1160B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>fractions bevelled</title>
      6    <link rel="help" href="https://www.w3.org/TR/MathML3/chapter3.html#presm.mfrac">
      7    <link rel="help" href="https://w3c.github.io/mathml-core/#fractions-mfrac">
      8    <link rel="help" href="https://github.com/mathml-refresh/mathml/issues/29">
      9    <meta name="assert" content="Verify that the MathML3 bevelled attribute is ignored.">
     10    <link rel="match" href="frac-legacy-bevelled-attribute.tentative-ref.html">
     11  </head>
     12  <body>
     13    <p>Test passes is you see a blue rectangle <em>above</em> a green rectangle, separated by a horizontal bar.</p>
     14    <p>
     15      <math>
     16        <mfrac bevelled="true">
     17          <mspace width="100px" height="30px" style="background: lightblue"></mspace>
     18          <mspace width="100px" height="30px" style="background: lightgreen"></mspace>
     19        </mfrac>
     20      </math>
     21    </p>
     22    <script src="/mathml/support/feature-detection.js"></script>
     23    <script>
     24      MathMLFeatureDetection.ensure_for_match_reftest("has_mspace");
     25      MathMLFeatureDetection.ensure_for_match_reftest("has_mfrac");
     26    </script>
     27  </body>
     28 </html>