| <!DOCTYPE HTML> | |
| <!-- Test background blending with SVG. Test passes if you can see a green square. --> | |
| <link rel="stylesheet" href="resources/blending-style.css"> | |
| <style type="text/css"> | |
| div { | |
| background: url('data:image/svg+xml;utf8, \ | |
| <svg xmlns="http://www.w3.org/2000/svg" width="100px" height="100px"> \ | |
| <rect width="100" height="100" fill="#000"/> \ | |
| <rect width="100" height="100" fill="#FFF"/> \ | |
| </svg>'); | |
| } | |
| </style> | |
| <div class="green box bg-multiply bg-full"></div> |