tor-browser

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

white-space-empty-text-sibling.html (476B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-rules">
      3 <link rel="match" href="../../reference/pass_if_two_words.html">
      4 <p>There should be a space between "two" and "words" below.</p>
      5 <div id="block"> <span>words</span></div>
      6 <script>
      7  block.insertBefore(document.createTextNode(""), block.firstChild);
      8  block.insertBefore(document.createTextNode(""), block.firstChild);
      9  block.offsetTop;
     10  block.firstChild.data = "two";
     11 </script>