Title: [139767] trunk
Revision
139767
Author
[email protected]
Date
2013-01-15 11:46:01 -0800 (Tue, 15 Jan 2013)

Log Message

[GTK] Enable CSS Image Resolution feature
https://bugs.webkit.org/show_bug.cgi?id=99038

Patch by Zan Dobersek <[email protected]> on 2013-01-15
Reviewed by Gustavo Noronha Silva.

Tools: 

Enable the CSS Image Resolution feature for the development
builds of the GTK port.

* Scripts/webkitperl/FeatureList.pm:

LayoutTests: 

Remove the failure expectation for the fast/css/image-resolution directory,
the single layout test inside it now passes.

* platform/gtk/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (139766 => 139767)


--- trunk/LayoutTests/ChangeLog	2013-01-15 19:42:41 UTC (rev 139766)
+++ trunk/LayoutTests/ChangeLog	2013-01-15 19:46:01 UTC (rev 139767)
@@ -1,3 +1,15 @@
+2013-01-15  Zan Dobersek  <[email protected]>
+
+        [GTK] Enable CSS Image Resolution feature
+        https://bugs.webkit.org/show_bug.cgi?id=99038
+
+        Reviewed by Gustavo Noronha Silva.
+
+        Remove the failure expectation for the fast/css/image-resolution directory,
+        the single layout test inside it now passes.
+
+        * platform/gtk/TestExpectations:
+
 2013-01-15  Zan Dobersek  <[email protected]>
 
         Unreviewed GTK gardening.

Modified: trunk/LayoutTests/platform/gtk/TestExpectations (139766 => 139767)


--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-01-15 19:42:41 UTC (rev 139766)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-01-15 19:46:01 UTC (rev 139767)
@@ -373,9 +373,6 @@
 webkit.org/b/99057 fast/css/variables [ Skip ]
 webkit.org/b/99057 inspector/styles/variables [ Skip ]
 
-# CSS image-resolution is not yet enabled.
-webkit.org/b/99038 fast/css/image-resolution [ Failure ]
-
 # CSS image-orientation is not yet enabled.
 webkit.org/b/99040 fast/css/image-orientation [ Failure ]
 

Modified: trunk/Tools/ChangeLog (139766 => 139767)


--- trunk/Tools/ChangeLog	2013-01-15 19:42:41 UTC (rev 139766)
+++ trunk/Tools/ChangeLog	2013-01-15 19:46:01 UTC (rev 139767)
@@ -1,5 +1,17 @@
 2013-01-15  Zan Dobersek  <[email protected]>
 
+        [GTK] Enable CSS Image Resolution feature
+        https://bugs.webkit.org/show_bug.cgi?id=99038
+
+        Reviewed by Gustavo Noronha Silva.
+
+        Enable the CSS Image Resolution feature for the development
+        builds of the GTK port.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
+2013-01-15  Zan Dobersek  <[email protected]>
+
         [GTK] Stop passing the unstable features flag to configure script when using build-webkit
         https://bugs.webkit.org/show_bug.cgi?id=106579
 

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (139766 => 139767)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2013-01-15 19:42:41 UTC (rev 139766)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2013-01-15 19:46:01 UTC (rev 139767)
@@ -194,7 +194,7 @@
       define => "ENABLE_CSS_IMAGE_ORIENTATION", default => 0, value => \$cssImageOrientationSupport },
 
     { option => "css-image-resolution", desc => "Toggle CSS image-resolution support",
-      define => "ENABLE_CSS_IMAGE_RESOLUTION", default => isBlackBerry(), value => \$cssImageResolutionSupport },
+      define => "ENABLE_CSS_IMAGE_RESOLUTION", default => (isBlackBerry() || isGtk()), value => \$cssImageResolutionSupport },
 
     { option => "css-regions", desc => "Toggle CSS Regions support",
       define => "ENABLE_CSS_REGIONS", default => 1, value => \$cssRegionsSupport },
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to