tor-browser

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

radical-rendering-from-in-flow.html (1727B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8"/>
      5    <title>radicals rendering from in-flow children</title>
      6    <link rel="help" href="https://w3c.github.io/mathml-core/#radicals-msqrt-mroot">
      7    <meta name="assert" content="Verify rendering of radicals is only affected by in-flow children.">
      8    <style>
      9      .oof1 {
     10          position: absolute;
     11      }
     12      .oof2 {
     13          position: fixed;
     14      }
     15      .nobox {
     16          display: none;
     17      }
     18    </style>
     19    <link rel="match" href="radical-rendering-from-in-flow-ref.html">
     20  </head>
     21  <body>
     22    <math>
     23      <msqrt>
     24        <mspace width="32px" class="oof1"/>
     25        <mspace width="16px" class="oof2"/>
     26        <mspace width="8px" class="nobox"/>
     27        <mspace width="64px" height="8px" style="background: lightblue"></mspace>
     28        <mspace width="32px" class="oof1"/>
     29        <mspace width="16px" class="oof2"/>
     30        <mspace width="8px" class="nobox"/>
     31      </msqrt>
     32      <mroot>
     33        <mspace width="32px" class="oof1"/>
     34        <mspace width="16px" class="oof2"/>
     35        <mspace width="8px" class="nobox"/>
     36        <mspace width="64px" height="12px" style="background: lightblue"></mspace>
     37        <mspace width="32px" class="oof1"/>
     38        <mspace width="16px" class="oof2"/>
     39        <mspace width="8px" class="nobox"/>
     40        <mspace width="128px" height="24px" style="background: lightgreen"></mspace>
     41        <mspace width="32px" class="oof1"/>
     42        <mspace width="16px" class="oof2"/>
     43        <mspace width="8px" class="nobox"/>
     44      </mroot>
     45    </math>
     46    <script src="/mathml/support/feature-detection.js"></script>
     47    <script>MathMLFeatureDetection.ensure_for_match_reftest("has_msqrt");</script>
     48  </body>
     49 </html>