tor-browser

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

backplate-bg-image-012.html (509B)


      1 <!DOCTYPE html>
      2 <title>Empty canvas objects and images that do not share lines with text should not receive backplates.</title>
      3 <style>
      4  .outer {
      5    background-image: url("blue.png");
      6  }
      7  canvas {
      8    height: 100px;
      9    width: 100px;
     10  }
     11 </style>
     12 <div class="outer">
     13  <canvas></canvas>
     14  <br>
     15  <img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>" style="border:1px solid black; height:100px; width:100px;">
     16  <br>
     17  <img src="data:image/png," alt="Here is some alt text">
     18 </div>