text-shadow not supported
When converting to PDF, it seems text-shadow is not applied?
MRP:
```svg
<svg width="300" height="100" xmlns="http://www.w3.org/2000/svg">
<style>
.shadowed {
font-size: 40px;
fill: black;
text-shadow: black 5px 5px 5px;
}
</style>
<text x="50" y="50" class="shadowed">Shadow Text</text>
</svg>
```
Result:
<img width="691" height="211" alt="Image" src="https://github.com/user-attachments/assets/2d91eb13-3fb6-41d3-9ec3-5588b540ef8d" />
Expected:
<img width="408" height="118" alt="Image" src="https://github.com/user-attachments/assets/3c43a8e8-db95-4156-beca-b7b59ea4cd46" />
3 条评论