https://bugs.documentfoundation.org/show_bug.cgi?id=148191

            Bug ID: 148191
           Summary: xlink:href in SVG is deprecated
           Product: LibreOffice
           Version: 7.3.0.3 release
          Hardware: All
                OS: All
            Status: UNCONFIRMED
          Severity: minor
          Priority: medium
         Component: Writer
          Assignee: libreoffice-bugs@lists.freedesktop.org
          Reporter: gessos.p...@yahoo.gr

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:
.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to