tor-browser

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

large-min-size-reftest.tentative.html (763B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <link rel="match" href="large-min-size-reftest-ref.html">
      4 <link rel="help" href="https://github.com/WICG/PEPC/blob/main/explainer.md#locking-the-pepc-style">
      5 <body>
      6  <div>
      7    The permission element min-width/height should not be allowed to exceeed the maximum
      8    allowed value for max-width/height.
      9  </div>
     10 
     11 <style>
     12  #id1 {
     13    font-size: 10px;
     14    min-height: 100px;
     15    min-width: 1000px;
     16    border: 0px;
     17 
     18    width: 1px;
     19    height: 1px;
     20  }
     21  #id2 {
     22    font-size: 10px;
     23    max-height: 5px;
     24    max-width: 10px;
     25    border: 0px;
     26 
     27    width: 1000px;
     28    height: 1000px;
     29  }
     30 </style>
     31 
     32 <div><permission id="id1" type="geolocation"></permission></div>
     33 <div><permission id="id2" type="camera"></permission></div>
     34 </body>