tor-browser

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

at-property-non-matching-media-crash.html (427B)


      1 <!DOCTYPE html>
      2 <html class="test-wait">
      3  <link rel="help" href="https://crbug.com/1085994">
      4  <style id="style">
      5    @property --x {
      6      syntax: "<length>";
      7      inherits: false;
      8      initial-value: 0px;
      9    }
     10  </style>
     11  <script>
     12      document.documentElement.offsetTop;
     13      style.setAttribute('media', 'braille');
     14      document.documentElement.className = '';
     15  </script>
     16  <p>
     17    PASS if no crash
     18  </p>
     19 </html>