tor-browser

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

registered-property-change-style-002-ref.html (581B)


      1 <!DOCTYPE HTML>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>Invalidation after CSS.registerProperty (reference)</title>
      6    <style>
      7      .failure {
      8          background: pink;
      9      }
     10      #visibility {
     11          visibility: hidden;
     12      }
     13      #display {
     14          display: none;
     15      }
     16    </style>
     17  </head>
     18  <body>
     19    <p>This test PASS if you see no red in the list below.</p>
     20    <ul>
     21      <li>visibility <span id="visibility" class="failure">FAIL</span></li>
     22      <li>display <span id="display" class="failure">FAIL</span></li>
     23    </ul>
     24  </body>
     25 </html>