tor-browser

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

overflow-img-scroll-non-replaced.html (623B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Verifies overflow allows scrolling when rendering alt test for img elements</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-overflow/#propdef-overflow">
      5 <link rel="author" title="Khushal Sagar" href="mailto:khushalsagar@chromium.org">
      6 <link rel="match" href="overflow-img-scroll-non-replaced-ref.html">
      7 <style>
      8  img {
      9    border: solid;
     10    display: block;
     11    width: 150px;
     12    padding: 10px;
     13    overflow: scroll;
     14  }
     15 </style>
     16 <body>
     17 <img src="about:invalid" alt="I have scrollbar ................................................................"></img>
     18 </body>