backplate-bg-image-012-ref.html (575B)
1 <!DOCTYPE html> 2 <title>Reference: 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 .fake-backplate { 12 background-color: white; 13 } 14 </style> 15 <div class="outer"> 16 <canvas></canvas> 17 <br> 18 <img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>" style="border:1px solid black; height:100px; width:100px;"> 19 <br> 20 <span class="fake-backplate">Here is some alt text</span> 21 </div>