RESOLVED FIXED 109475
[GTK] Enable CSS image-set support in development builds
https://bugs.webkit.org/show_bug.cgi?id=109475
Summary [GTK] Enable CSS image-set support in development builds
Zan Dobersek
Reported 2013-02-11 13:11:53 PST
[GTK] Enable CSS image-set support in development builds
Attachments
Patch (6.23 KB, patch)
2013-02-11 13:15 PST, Zan Dobersek
no flags
Zan Dobersek
Comment 1 2013-02-11 13:15:45 PST
Zan Dobersek
Comment 2 2013-02-12 05:27:26 PST
Comment on attachment 187648 [details] Patch Clearing flags on attachment: 187648 Committed r142606: <http://trac.webkit.org/changeset/142606>
Zan Dobersek
Comment 3 2013-02-12 05:27:30 PST
All reviewed patches have been landed. Closing bug.
Chris Dumez
Comment 4 2013-02-12 06:41:47 PST
It seems this patch somehow disabled CSS_IMAGE_SET for EFL port? It brought a few failures on our bots: http://build.webkit.org/results/EFL%20Linux%2064-bit%20Debug%20WK2/r142607%20(9378)/results.html
Chris Dumez
Comment 5 2013-02-12 06:43:28 PST
Comment on attachment 187648 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=187648&action=review > Tools/Scripts/webkitperl/FeatureList.pm:211 > + define => "ENABLE_CSS_IMAGE_SET", default => isGtk(), value => \$cssImageSetSupport }, So It seems we need a " || isEfl()" here? Some other ports probably have CSS_IMAGE_SET enabled as well (mac, chormium for e.g.).
Zan Dobersek
Comment 6 2013-02-12 06:58:09 PST
(In reply to comment #5) > (From update of attachment 187648 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=187648&action=review > > > Tools/Scripts/webkitperl/FeatureList.pm:211 > > + define => "ENABLE_CSS_IMAGE_SET", default => isGtk(), value => \$cssImageSetSupport }, > > So It seems we need a " || isEfl()" here? Some other ports probably have CSS_IMAGE_SET enabled as well (mac, chormium for e.g.). Did that in r142617. http://trac.webkit.org/changeset/142617 As for other ports, the Chromium port manages feature enabling in Source/WebKit/chromium/features.gypi independently from FeatureList.pm while the Mac port enables this feature by defining the macro in Platform.h, probably because it's also defined for the iOS platform. I'm not really comfortable changing that but it still seems to work (i.e. the feature is enabled at compile-time) despite the not enabling the feature in FeatureList.pm.
Chris Dumez
Comment 7 2013-02-12 06:59:07 PST
(In reply to comment #6) > (In reply to comment #5) > > (From update of attachment 187648 [details] [details]) > > View in context: https://bugs.webkit.org/attachment.cgi?id=187648&action=review > > > > > Tools/Scripts/webkitperl/FeatureList.pm:211 > > > + define => "ENABLE_CSS_IMAGE_SET", default => isGtk(), value => \$cssImageSetSupport }, > > > > So It seems we need a " || isEfl()" here? Some other ports probably have CSS_IMAGE_SET enabled as well (mac, chormium for e.g.). > > Did that in r142617. > http://trac.webkit.org/changeset/142617 > > As for other ports, the Chromium port manages feature enabling in Source/WebKit/chromium/features.gypi independently from FeatureList.pm while the Mac port enables this feature by defining the macro in Platform.h, probably because it's also defined for the iOS platform. I'm not really comfortable changing that but it still seems to work (i.e. the feature is enabled at compile-time) despite the not enabling the feature in FeatureList.pm. Sounds good to me. Thank you for the quick fix.
Note You need to log in before you can comment on or make changes to this bug.