tor-browser

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

wm-propagation-body-dynamic-change-003.html (580B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Writing Modes Test: propagation of the writing-mode property from body to root with text children</title>
      4 <link rel=help href="https://drafts.csswg.org/css-writing-modes-3/#principal-flow">
      5 <link rel="match" href="wm-propagation-body-dynamic-change-003-ref.html">
      6 <body style="writing-mode: vertical-rl"></body>
      7 <script>
      8  document.documentElement.insertBefore(
      9    document.createTextNode("This text must be horizontal."), document.body);
     10  document.body.offsetTop;
     11  document.body.style.writingMode = "horizontal-tb";
     12 </script>