mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-04-03 03:05:05 +00:00
Going via the `ViewportPaintable` missed some steps (in particular computing clip rects), which meant nested SVGs within SVGs-as-images were completely clipped.
9 lines
186 B
HTML
9 lines
186 B
HTML
<svg width="22" height="22" xmlns="http://www.w3.org/2000/svg">
|
|
<rect x="5" y="5" width="12" height="12" fill="red" />
|
|
</svg>
|
|
<style>
|
|
svg {
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|