tor-browser

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

inline-negative-margin-minmax-crash-001.html (583B)


      1 <!DOCTYPE html>
      2 <title>CSS Test: Check inline negative margin with fit-content should not cause hang</title>
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <link rel="help" href="https://crbug.com/1028817">
      6 <link rel="help" href="https://drafts.csswg.org/css2/visudet.html#inline-width">
      7 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
      8 <style>
      9 div {
     10  width: fit-content;
     11 }
     12 span {
     13  margin-left: -15px;
     14 }
     15 </style>
     16 <body>
     17  <div>| <span>Operation</span></div>
     18 <script>test(() => {});</script>
     19 </body>