tor-browser

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

select-display-inline.html (624B)


      1 <!DOCTYPE html>
      2 <title>&lt;select&gt; with display:inline</title>
      3 <link rel="author" title="Oriol Brufau" href="obrufau:obrufau@igalia.com">
      4 <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-select-element-2">
      5 <link rel="help" href="https://github.com/servo/servo/issues/39927">
      6 <link rel="match" href="select-display-inline-ref.html">
      7 <meta name="assert" content="
      8  A <select> is a widget, so it's atomic when it has display:inline.
      9  In particular, this implies that it's transformable.
     10 ">
     11 
     12 <select style="display: inline; transform: translateX(100px)">
     13  <option>option</option>
     14 </select>