[Webkit-unassigned] [Bug 12126] linked jpeg image not displayed
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Jan 15 00:53:02 PST 2007
http://bugs.webkit.org/show_bug.cgi?id=12126
------- Comment #2 from macdome at opendarwin.org 2007-01-15 00:53 PDT -------
It turns out this is related to some sort of overflow value on the image
position:
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%"
viewBox="350000 0 350000 233540">
<image xlink:href="ch_relief.jpg" x="350000" y="0" width="350000"
height="233540"/>
</svg>
that reduction fails. However this alternative does not fail:
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%"
viewBox="340000 0 350000 233540">
<image xlink:href="ch_relief.jpg" x="340000" y="0" width="350000"
height="233540"/>
</svg>
note the 340000 instead of 350000
--
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list