tor-browser

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

display-contents-remove-whitespace-change.html (544B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Remove display:contents with block child and whitespace sibling</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-display-3/#valdef-display-contents">
      5 <link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-rules">
      6 <link rel="match" href="../../reference/pass_if_two_words.html">
      7 <p>There should be a space between "two" and "words" below.</p>
      8 two<div id="rm" style="display:contents"><div></div></div> <span>words</span>
      9 <script>
     10  rm.offsetTop;
     11  rm.remove();
     12 </script>