tor-browser

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

first-line-inherited-transition-crash.html (295B)


      1 <!DOCTYPE html>
      2 <title>CSS Pseudo-Element Test: Color transition from inherited ::first-line style should not crash</title>
      3 <link rel="help" href="https://crbug.com/1416821">
      4 <style>
      5  div::first-line { color: red }
      6  span { transition: color 100s; }
      7 </style>
      8 <div><span>First line</span></div>