If 'fill="url(#image)"' and defs with id 'image' was not found, the paint was
improperly filled with color.
Change-Id: Ia1d0291f0877c81199181b4352e08a889816cc72
auto radial = _applyRadialGradientProperty(style->fill.paint.gradient, vg, vx, vy, vw, vh, style->fill.opacity);
vg->fill(move(radial));
}
+ } else if (style->fill.paint.url) {
+ //TODO: Apply the color pointed by url
} else if (style->fill.paint.curColor) {
//Apply the current style color
vg->fill(style->color.r, style->color.g, style->color.b, style->fill.opacity);