tor-browser

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

iframe-modify-scrolling-attr-to-yes.html (653B)


      1 <!DOCTYPE html>
      2 <title>modify iframe scrolling attr to yes</title>
      3 <link rel="author" title="Jinfeng Ma" href="mailto:majinfeng1@xiaomi.org">
      4 <link rel="help" href="https://www.w3.org/TR/html401/present/frames.html#adef-scrolling">
      5 <link rel="match" href="iframe-modify-scrolling-attr-to-yes-ref.html">
      6 
      7 <p>Test passes if you can see the scrollbars of the iframe displayed below.</p>
      8 <iframe src="support/iframe-which-content-height-equals-400px.html" scrolling="no" width="200px" height="100px">
      9 </iframe>
     10 
     11 <script>
     12    let iframe = document.querySelector("iframe");
     13    iframe.onload = function () {
     14        iframe.scrolling = 'yes';
     15    };
     16 </script>