RESOLVED FIXED 123698
[CSS] Enable css-image-orientation on EFL and GTK ports.
https://bugs.webkit.org/show_bug.cgi?id=123698
Summary [CSS] Enable css-image-orientation on EFL and GTK ports.
Gyuyoung Kim
Reported 2013-11-03 00:47:48 PDT
There were some regressions in layout test when css-image-orientation is enabled. The regressions come from wrong early return in ENABLE(CSS_IMAGE_ORIENTATION) blocks. This patch fixes wrong early return, and enable the css-image-orientation on EFL and GTK by default.
Attachments
Patch (5.35 KB, patch)
2013-11-03 00:56 PDT, Gyuyoung Kim
no flags
Patch (5.36 KB, patch)
2013-11-03 07:31 PST, Gyuyoung Kim
no flags
Patch (5.33 KB, patch)
2013-11-03 21:49 PST, Gyuyoung Kim
no flags
Patch (5.71 KB, patch)
2013-11-05 00:11 PST, Gyuyoung Kim
no flags
Gyuyoung Kim
Comment 1 2013-11-03 00:56:55 PDT
Gyuyoung Kim
Comment 2 2013-11-03 07:31:55 PST
kov's GTK+ EWS bot
Comment 3 2013-11-03 08:04:32 PST
Gyuyoung Kim
Comment 4 2013-11-03 08:10:23 PST
(In reply to comment #3) > (From update of attachment 215868 [details]) > Attachment 215868 [details] did not pass gtk-ews (gtk): > Output: http://webkit-queues.appspot.com/results/20398067 When I build gtk port with this patch, there is no build break. It seems to me gtk ews doesn't generate *CSSPropertyImageOrientation* with this patch. Is this right ?
Gyuyoung Kim
Comment 5 2013-11-03 21:49:32 PST
kov's GTK+ EWS bot
Comment 6 2013-11-03 22:38:47 PST
Gyuyoung Kim
Comment 7 2013-11-03 23:17:36 PST
CC'ing Beth and Martin, Beth, could you take a look this ? Martin, in gtk build error cases, there is no build break when I build gtk port using this patch. It looks gtk ews doesn't support to build gtk port from scratch. Could you take a look this ?
Sergio Correia (qrwteyrutiyoup)
Comment 8 2013-11-04 12:41:23 PST
Comment on attachment 215888 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=215888&action=review > Source/WebCore/ChangeLog:9 > + when enabling css-image-orientaiton. This fixes those wrong implementation as well as enables it on EFL nit: enabling css-image-orientation. > Source/WebCore/loader/cache/CachedImage.cpp:266 > + imageSize = static_cast<BitmapImage*>(m_image.get())->sizeRespectingOrientation(orientationDescription); There's still a problem here, as we don't set imageSize if we don't get to this inner if, and hence get a zero sized image, since we won't fall in the outer else clause. I suggest you initialize imageSize in its declaration with m_image->size() and remove the outer else clause, to make sure we always have imageSize with a valid value. If needed, it will be changed accordingly inside ENABLE(CSS_IMAGE_ORIENTATION) / ENABLE(SVG).
Gyuyoung Kim
Comment 9 2013-11-05 00:11:27 PST
Gyuyoung Kim
Comment 10 2013-11-05 00:14:27 PST
(In reply to comment #8) > (From update of attachment 215888 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=215888&action=review > > > Source/WebCore/ChangeLog:9 > > + when enabling css-image-orientaiton. This fixes those wrong implementation as well as enables it on EFL > > nit: enabling css-image-orientation. Fixed. Thanks. > > Source/WebCore/loader/cache/CachedImage.cpp:266 > > + imageSize = static_cast<BitmapImage*>(m_image.get())->sizeRespectingOrientation(orientationDescription); > > There's still a problem here, as we don't set imageSize if we don't get to this inner if, and hence get a zero sized image, since we won't fall in the outer else clause. I suggest you initialize imageSize in its declaration with m_image->size() and remove the outer else clause, to make sure we always have imageSize with a valid value. Yes, we shouldn't make any situation that *imageSize* is not initialized. Fixed.
kov's GTK+ EWS bot
Comment 11 2013-11-05 01:18:02 PST
WebKit Commit Bot
Comment 12 2013-11-05 01:37:58 PST
Comment on attachment 216009 [details] Patch Clearing flags on attachment: 216009 Committed r158659: <http://trac.webkit.org/changeset/158659>
WebKit Commit Bot
Comment 13 2013-11-05 01:38:01 PST
All reviewed patches have been landed. Closing bug.
Gyuyoung Kim
Comment 14 2013-11-07 22:14:30 PST
*** Bug 123256 has been marked as a duplicate of this bug. ***
Note You need to log in before you can comment on or make changes to this bug.