tor-browser

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

placeholder-excluded-properties.html (671B)


      1 <!DOCTYPE html>
      2 <title>::placeholder should not support 'writing-mode', 'direction', and 'text-orientation'</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#placeholder-pseudo">
      4 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-styling">
      5 <link rel="match" href="reference/placeholder-excluded-properties-ref.html">
      6 <style>
      7 .horizontal::placeholder {
      8  writing-mode: vertical-rl;
      9  direction: rtl;
     10 }
     11 
     12 .vertical {
     13  writing-mode: vertical-rl;
     14 }
     15 .vertical::placeholder {
     16  text-orientation: upright;
     17 }
     18 </style>
     19 <body>
     20 <input class="horizontal" placeholder="placeholder">
     21 <input class="vertical" placeholder="placeholder">
     22 </body>