tor-browser

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

outdent-in-meter-indented-by-legend-in-css-mode.html (441B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <script>
      6 addEventListener("load", () => {
      7  document.execCommand("styleWithCSS", false, "true");
      8  document.getSelection().collapse(document.querySelector("label"), 0);
      9  document.execCommand("outdent");
     10 });
     11 </script>
     12 </head>
     13 <body>
     14 <li contenteditable>
     15 <legend style="margin-right: 43%">
     16 <meter>
     17 <mi dir="rtl">8</mi>
     18 <label>
     19 <dir></dir>
     20 </label>
     21 </meter>
     22 </legend>
     23 </li>
     24 </body>
     25 </html>