tor-browser

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

overflow-img-scroll-non-replaced-ref.html (569B)


      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 <style>
      7  div {
      8    border: solid;
      9    display: block;
     10    width: 150px;
     11    padding: 10px;
     12    overflow: scroll;
     13  }
     14 </style>
     15 <body>
     16 <div>
     17 <img src="about:invalid" alt="I have "></img>
     18 scrollbar ................................................................
     19 </div>
     20 </body>