tor-browser

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

pseudo-element-inline-box.html (599B)


      1 <!doctype html>
      2 <title>CSS Test: content: url() on pseudo-elements is under a non-replaced box.</title>
      3 <link rel="match" href="pseudo-element-inline-box-ref.html">
      4 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      5 <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu">
      6 <link rel="help" href="https://drafts.csswg.org/css-content/#typedef-content-content-list">
      7 <style>
      8  div::before {
      9    border: 10px solid blue;
     10    content: url(resources/rect.svg);
     11    display: inline;
     12  }
     13 </style>
     14 <p>Should see a green image with a blue border</p>
     15 <div></div>