tor-browser

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

resize-generated-content.html (623B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Basic User Interface Test: resize - generated content</title>
      4 <meta name="assert" content="The resize property should not apply to generated content, the behavior is undefined">
      5 <link rel="help" href="http://drafts.csswg.org/css-ui/#resize">
      6 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
      7 <style>
      8  #test::before {
      9    content: "";
     10    display: block;
     11    width: 100px;
     12    height: 100px;
     13    overflow: hidden;
     14    resize: both;
     15    background: green;
     16  }
     17 </style>
     18 <p>Test passes if there is a filled green square.</p>
     19 <div id="test"></div>