tor-browser

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

grid-gap-decorations-041-crash.html (443B)


      1 <!DOCTYPE html>
      2 <title>
      3  CSS Gap Decorations: Renderer doesn't crash when gap decorations is used on grid with no rows/columns.
      4 </title>
      5 <link rel="help" href="https://drafts.csswg.org/css-gaps-1/">
      6 <link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com">
      7 <style>
      8  .grid-container {
      9    display: grid;
     10 
     11    column-rule: solid blue;
     12    row-rule: dotted red;
     13  }
     14 </style>
     15 
     16 <div class="grid-container"></div>