mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
These test work with LibGfx painter but won't longer work after switching to Skia, because it produces slightly different antialiasing, rounding in color blending, etc.
11 lines
495 B
HTML
11 lines
495 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="reference/svg-foreign-object-mask-ref.html" />
|
|
<svg width="40" height="40" viewBox="0 0 40 40">
|
|
<mask id=":r0:" width="32" height="32">
|
|
<circle cx="16" cy="16" r="16" fill="white"></circle>
|
|
</mask>
|
|
<foreignobject x="0" y="0" width="32" height="32" mask="url(#:r0:)">
|
|
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAAD8GO2jAAAAGUlEQVR4nO3BMQEAAADCoPVP7WENoAAAAG4MIAABt9NlCQAAAABJRU5ErkJggg=="/>
|
|
</foreignobject>
|
|
</svg>
|