Не работает атрибуты у текста
<svg viewBox="0 0 1000 300" width="400" style='border:1px solid black'>
<text x='50' y='150'font-size='120' fill='red' stroke='black' stroke-width='3' text-decoration='underline overline line-through' font-weight='100' font-style='obligue' font-stretch='ultra-expanded'>
Простой текст
</text>
<!-- <path d="M0,250 A100,100 0,0,0 500,250" /> -->
</svg>
- Не работает font-stretch='ultra-expanded'
- Не работает font-style='obligue'
<svg viewBox="0 0 1000 300" width="400" style='border:1px solid black'>
<defs>
<style>
text{
font-style: obligue;
font-stretch: ultra-expanded;
}
</style>
</defs>
<text x='50' y='150'font-size='120' fill='red' stroke='black' stroke-width='3' text-decoration='underline' font-weight='100' font-style='obligue' font-stretch='ultra-expanded' unicode-bidi="bidi-override" glyph-orientation-vertical="0" font-size-adjust="1.1" dominant-baseline="hanging">
Простой текст
</text>
<!-- <path d="M0,250 A100,100 0,0,0 500,250" /> -->
</svg>