WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
123810
Avoid invalid cairo matrix when drawing surfaces too small
https://bugs.webkit.org/show_bug.cgi?id=123810
Summary
Avoid invalid cairo matrix when drawing surfaces too small
Cidorvan Leite
Reported
2013-11-05 10:33:06 PST
Avoid invalid cairo matrix when drawing surfaces too small
Attachments
Patch
(4.04 KB, patch)
2013-11-06 09:21 PST
,
Cidorvan Leite
no flags
Details
Formatted Diff
Diff
Patch
(4.12 KB, patch)
2013-11-07 10:57 PST
,
Cidorvan Leite
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Cidorvan Leite
Comment 1
2013-11-06 09:21:37 PST
Created
attachment 216184
[details]
Patch
Martin Robinson
Comment 2
2013-11-07 10:48:25 PST
Comment on
attachment 216184
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=216184&action=review
Thanks! One small nit in the patch.
> Source/WebCore/platform/graphics/cairo/PlatformContextCairo.cpp:164 > FloatRect srcRect = originalSrcRect; > > + // Avoid invalid cairo matrix with small values. > + if (std::fabs(destRect.width()) < 0.5f || std::fabs(destRect.height()) < 0.5f) > + return; > +
Please move this above the definition of srcRect, as srcRect is only used afterward.
Cidorvan Leite
Comment 3
2013-11-07 10:57:13 PST
Created
attachment 216314
[details]
Patch
WebKit Commit Bot
Comment 4
2013-11-07 12:09:15 PST
Comment on
attachment 216314
[details]
Patch Clearing flags on attachment: 216314 Committed
r158861
: <
http://trac.webkit.org/changeset/158861
>
WebKit Commit Bot
Comment 5
2013-11-07 12:09:18 PST
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug