tor-browser

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

grid-gap-decorations-043-crash.html (475B)


      1 <!DOCTYPE html>
      2 <title>
      3  CSS Gap Decorations: Column gutter with no column gaps and row gaps with no row gutter should not crash.
      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    column-gap: 40px;
     11 
     12    grid-template: 1fr 1fr / 1fr;
     13    column-rule: solid blue;
     14  }
     15 </style>
     16 
     17 <div class="grid-container"></div>