tor-browser

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

legacy-mfenced-element-001.html (1536B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>mfenced element</title>
      6    <link rel="help" href="https://www.w3.org/TR/MathML3/chapter3.html#presm.mfenced">
      7    <link rel="help" href="https://w3c.github.io/mathml-core/#new-display-math-value">
      8    <link rel="help" href="https://w3c.github.io/mathml-core/#mathml-elements">
      9    <link rel="help" href="https://w3c.github.io/mathml-core/#horizontally-group-sub-expressions-mrow">
     10    <meta name="assert" content="Verify that the mfenced element is not supported.">
     11    <link rel="match" href="legacy-mfenced-element-001-ref.html">
     12  </head>
     13  <body>
     14    <p>Test passes if you see 6 green squares and no red.</p>
     15    <p>
     16      <math style="color: red">
     17        <mfenced>
     18          <mspace width="30px" height="30px" style="background: green"></mspace>
     19          <mspace width="30px" height="30px" style="background: lightgreen"></mspace>
     20          <mspace width="30px" height="30px" style="background: green"></mspace>
     21        </mfenced>
     22        <mfenced open="{" close="]" separators="?!">
     23          <mspace width="30px" height="30px" style="background: lightgreen"></mspace>
     24          <mspace width="30px" height="30px" style="background: green"></mspace>
     25          <mspace width="30px" height="30px" style="background: lightgreen"></mspace>
     26        </mfenced>
     27      </math>
     28    </p>
     29    <script src="/mathml/support/feature-detection.js"></script>
     30    <script>
     31      MathMLFeatureDetection.ensure_for_match_reftest("has_mspace");
     32    </script>
     33  </body>
     34 </html>