tor-browser

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

mover-accent-dynamic-change.html (531B)


      1 <!doctype html>
      2 <title>MathML: Dynamically change accent on mover</title>
      3 <link rel="help" href="https://w3c.github.io/mathml-core/#displaystyle-and-scriptlevel-in-scripts">
      4 <link rel="match" href="mover-accent-dynamic-change-ref.html">
      5 <meta name="assert" content="Test that setting the accent attribute on mover takes effect">
      6 <p>The 1's below should have the same size</p>
      7 <math>
      8  <mover id="m">
      9    <mn>1</mn>
     10    <mn>1</mn>
     11  </mover>
     12 </math>
     13 <script>
     14  document.body.offsetTop;
     15  m.setAttribute("accent", "true");
     16 </script>