tor-browser

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

checkbox-appearance-native-vertical-lr-baseline.optional.html (1069B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Aditya Keerthi" href="https://github.com/pxlcoder">
      3 <link rel="help" href="https://html.spec.whatwg.org/#checkbox-state-(type=checkbox)">
      4 <link rel="help" href="https://drafts.csswg.org/css-writing-modes-4/#block-flow">
      5 <title>Test baseline alignment of checkboxes in vertical-lr writing mode.</title>
      6 <meta charset="utf-8">
      7 <link rel="match" href="checkbox-appearance-native-vertical-lr-baseline.optional-ref.html">
      8 <style>
      9 
     10 label {
     11    color: red;
     12    background-color: red;
     13    margin-top: -30px;
     14 }
     15 
     16 </style>
     17 <p>The checkbox should be center-aligned with the label it since text is non-alphabetic.</p>
     18 <div style="writing-mode: vertical-lr">
     19    <input type="checkbox" id="checkbox" checked>
     20    <label for="checkbox">こんにちわ</label>
     21 </div>
     22 
     23 <br>
     24 
     25 <p>The checkbox should be left-aligned with the label text since it has text-orientation sideways.</p>
     26 <div style="writing-mode: vertical-lr; text-orientation: sideways;">
     27  <input type="checkbox" id="checkbox" checked>
     28  <label for="checkbox">Baseline</label>
     29 </div>