tor-browser

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

input-text-base-appearance-rendering.html (630B)


      1 <!DOCTYPE html>
      2 <link rel=author href="mailto:jarhar@chromium.org">
      3 <link rel=help href="https://drafts.csswg.org/css-forms-1">
      4 <link rel=help href="https://github.com/w3c/csswg-drafts/issues/10857">
      5 <link rel=help href="https://github.com/w3c/csswg-drafts/issues/11486">
      6 <link rel=match href="input-text-base-appearance-rendering-ref.html">
      7 
      8 <input value=value style="appearance:base">
      9 
     10 <style>
     11 body {
     12  font-family: monospace;
     13  background-color: black;
     14  color: green;
     15 }
     16 input {
     17  /* Without setting the width, we would be relying on intrinsic sizing which
     18   * is not specified or interoperable. */
     19  width: 150px;
     20 }
     21 </style>