tor-browser

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

content-visibility-042-ref.html (465B)


      1 <!doctype HTML>
      2 <html>
      3 <meta charset="utf8">
      4 <title>Content Visibility: pseudo elements</title>
      5 <link rel="author" title="Rakina Zata Amni" href="mailto:rakina@chromium.org">
      6 <link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility">
      7 
      8 <style>
      9 #container::before {
     10  content: "This test ";
     11  color: green;
     12 }
     13 #container::after {
     14  content: "PASSES.";
     15  background: green;
     16  color: white;
     17 }
     18 </style>
     19 <div id="container"></div>
     20 </script>
     21 </html>