tor-browser

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

text-combine-upright-sideways-crash.html (571B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <title>Changing writing-mode of an element with text-combine-upright should not crash</title>
      4 <link rel="author" title="Kent Tamura" href="mailto:tkent@chromium.orgm"/>
      5 <link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#text-combine-upright"/>
      6 <link rel="help" href="https://crbug.com/461332428"/>
      7 <body>
      8 <div id="target" style="display: list-item; text-combine-upright: all; writing-mode: vertical-rl;"></div>
      9 <script>
     10 target.offsetTop;
     11 target.style.writingMode = "sideways-rl";
     12 target.offsetTop;
     13 </script>
     14 </body>