Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVG Gradient turns black when there is a BASE tag in HTML page?

Tags:

I am using the Raphaël JavaScript Library to create SVG elements in an HTML page and using CodeIgniter as a PHP framework. In the CodeIgniter framework I need to add a <base> tag in the head of the HTML document to use JS,CSS and images, but it caused a strange problem in the SVG element.

When I use the <base> tag, gradients do not work. Instead, the object turns black. It behaves exactly the same with image filled path objects.

like image 724
Ahmet Yildirim Avatar asked Oct 13 '11 19:10

Ahmet Yildirim


2 Answers

SVG Gradients are defined in the document with a unique id attribute, and then referenced from another element as a URL. Typically the URL is just the identifier fragment, e.g.:

<defs>
  <linearGradient id="foo" ...>...</linearGradient>
</defs>
<rect fill="url(#foo)" ... />

If you introduce a <base> element with an href attribute, you change the meaning of such URLs in the document. Instead of being computed relative to the current document, they are computed relative to the specified separate URI.

like image 69
Phrogz Avatar answered Nov 02 '22 22:11

Phrogz


see also the following bug report: https://bugzilla.mozilla.org/show_bug.cgi?id=652991

apparently, the notion of referencing (the fill gradient or marker-end, I suspect, too) by URL is problematic for AJAX-style applications that also use history.pushState().

like image 23
Erik Eidt Avatar answered Nov 02 '22 23:11

Erik Eidt