tor-browser

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

grid-important.html (523B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Grid: !important flag parsing</title>
      5    <link rel="help" href="https://crbug.com/340100643">
      6    <script src="/resources/testharness.js"></script>
      7    <script src="/resources/testharnessreport.js"></script>
      8  </head>
      9  <body>
     10    <div id="target" style="grid: 'myArea myArea . . .' 'myArea myArea . . .' !important">Some text.</div>
     11  </body>
     12  <script>
     13 test(() => {
     14  assert_equals(target.style.grid, '"myArea myArea . . ." "myArea myArea . . ."');
     15 });
     16  </script>
     17 </html>