I am loading an SVG image at the following URL:

/howl/svg/id/543

The source for this SVG code is:

<svg xml:base="/howl/">
  <svg width="535" height="325" xmlns="http://www.w3.org/2000/svg";
xmlns:xlink="http://www.w3.org/1999/xlink";>
    <image xlink:href="file/id/532" />
  </svg>
</svg>

As you can see, the SVG code is located at one path, but the <image>
is relative to the root, hence the wrapping xml:base attribute.

The actual requests, according to Tomcat Logging are:

GET /howl/svg/id/543
GET /howl/file/id/532

However, Firebug's Net tab shows these requests:

GET /howl/svg/id/543
GET /howl/svg/id/file/id/532 (Incorrect, doesn't happen)
GET /howl/file/id/532

That second request shows a spinner and never resolves.

Bug?

Thanks!

Jake



-- 
You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/firebug?hl=en.

Reply via email to