Closed Bug 1313979 Opened 8 years ago Closed 8 years ago

Allows to navigate to the linked SVG in a <use> statement

Categories

(DevTools :: Inspector, defect)

49 Branch
defect
Not set
normal

Tracking

(Not tracked)

RESOLVED DUPLICATE of bug 1158831

People

(Reporter: karlcow, Unassigned)

Details

Some SVG files are built with <use> calling a <defs> SVG


<html>
<title>Blah </title>

<article>
<svg xmlns="http://www.w3.org/2000/svg"
    xmlns:xlink="http://www.w3.org/1999/xlink"> 
  <use x="50" y="10" xlink:href="#something" />
</svg>

</article>


<div class="my_svg">
<svg xmlns="http://www.w3.org/2000/svg"
    xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <g id="something">
      <circle style="fill: inherit;" r="10"/>
    </g>
  </defs>
</svg>
</div>

</html>


It would be good to be able when inspecting the use to get a way to navigate to the SVG where the SVG icon is defined. Sometimes far apart of where it has been used.
This appears to be a duplicate of bug 1158831. Please re-open if I misunderstood.
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → DUPLICATE
Product: Firefox → DevTools
You need to log in before you can comment on or make changes to this bug.