Description: According to https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/xlink:href xlink:href is deprecated for SVG images. But LibreOffice Writer needs it. So, instead of: <svg width="304" height="364" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> ... <use xlink:href="#letters" transform="translate(0,340)" /> which is deprecated, anyone must use: <svg width="304" height="364" xmlns="http://www.w3.org/2000/svg"> ... <use href="#letters" transform="translate(0,340)" /> First, which is deprecated, works on LibreOffice. Second, which is current, does not work. Steps to Reproduce: 1. Follow description 2. 3. Actual Results: . Expected Results: . Reproducible: Always User Profile Reset: No Additional Info: .
Chamelon, thank you for reportng the bug. Does it happen, if you insert a svg-image, or if you open for example docx-file with svg-image? Please specify steps to reproduce. Thank you. => NEEDNFO
This is fixed by https://cgit.freedesktop.org/libreoffice/core/commit/?id=5169378d2a0f0a25013c8a4387a6e3cb1a4a55e9 Closing as RESOLVED FIXED