[Webkit-unassigned] [Bug 215602] Newlines in <feColorMatrix values="…"> should be treated as whitespace instead of breaking the filter
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Aug 18 02:20:32 PDT 2020
https://bugs.webkit.org/show_bug.cgi?id=215602
Mathias Bynens <mathias at qiwi.be> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |mathias at qiwi.be
--- Comment #2 from Mathias Bynens <mathias at qiwi.be> ---
Turns out only the leading newline is problematic. The other newlines don’t need to be removed.
Rewriting
<filter id="f">
<feColorMatrix values="
0 0 0 0 0
1 1 1 0 0
0 0 0 0 0
0 0 0 1 0">
</filter>
as
<filter id="f">
<feColorMatrix values="0 0 0 0 0
1 1 1 0 0
0 0 0 0 0
0 0 0 1 0">
</filter>
…is a sufficient workaround.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20200818/05de4377/attachment-0001.htm>
More information about the webkit-unassigned
mailing list