Title: [138795] trunk
Revision
138795
Author
[email protected]
Date
2013-01-04 06:15:34 -0800 (Fri, 04 Jan 2013)

Log Message

REGRESSION (r138184): transitions/transitions-parsing.html is failing on GTK
https://bugs.webkit.org/show_bug.cgi?id=105522

Reviewed by Xan Lopez.

.: 

Remove the configuration flag covering unprefixed CSS transition property names.
It does not introduce any dependency. The unprefixed property names should be
available by default.

* configure.ac:

Source/WebCore: 

Remove the feature define overriding for the unprefixed CSS transition property names
define as it is not required.

No new tests - no new functionality.

* GNUmakefile.am:

LayoutTests: 

Remove a failure expectation for a test that's now passing.

* platform/gtk/TestExpectations:

Modified Paths

Diff

Modified: trunk/ChangeLog (138794 => 138795)


--- trunk/ChangeLog	2013-01-04 14:13:28 UTC (rev 138794)
+++ trunk/ChangeLog	2013-01-04 14:15:34 UTC (rev 138795)
@@ -1,3 +1,16 @@
+2013-01-04  Zan Dobersek  <[email protected]>
+
+        REGRESSION (r138184): transitions/transitions-parsing.html is failing on GTK
+        https://bugs.webkit.org/show_bug.cgi?id=105522
+
+        Reviewed by Xan Lopez.
+
+        Remove the configuration flag covering unprefixed CSS transition property names.
+        It does not introduce any dependency. The unprefixed property names should be
+        available by default.
+
+        * configure.ac:
+
 2013-01-03  Tony Chang  <[email protected]>
 
         Generate internal.settings from Settings.in

Modified: trunk/LayoutTests/ChangeLog (138794 => 138795)


--- trunk/LayoutTests/ChangeLog	2013-01-04 14:13:28 UTC (rev 138794)
+++ trunk/LayoutTests/ChangeLog	2013-01-04 14:15:34 UTC (rev 138795)
@@ -1,3 +1,14 @@
+2013-01-04  Zan Dobersek  <[email protected]>
+
+        REGRESSION (r138184): transitions/transitions-parsing.html is failing on GTK
+        https://bugs.webkit.org/show_bug.cgi?id=105522
+
+        Reviewed by Xan Lopez.
+
+        Remove a failure expectation for a test that's now passing.
+
+        * platform/gtk/TestExpectations:
+
 2013-01-04  Sudarsana Nagineni  <[email protected]>
 
         Unreviewed EFL gardening.

Modified: trunk/LayoutTests/platform/gtk/TestExpectations (138794 => 138795)


--- trunk/LayoutTests/platform/gtk/TestExpectations	2013-01-04 14:13:28 UTC (rev 138794)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2013-01-04 14:15:34 UTC (rev 138795)
@@ -1392,8 +1392,6 @@
 
 webkit.org/b/105443 accessibility/aria-controls-with-tabs.html [ Failure ]
 
-webkit.org/b/105522 transitions/transitions-parsing.html [ Failure ]
-
 webkit.org/b/98146 accessibility/svg-bounds.html [ Failure ]
 
 # Leaking state into the next test.

Modified: trunk/Source/WebCore/ChangeLog (138794 => 138795)


--- trunk/Source/WebCore/ChangeLog	2013-01-04 14:13:28 UTC (rev 138794)
+++ trunk/Source/WebCore/ChangeLog	2013-01-04 14:15:34 UTC (rev 138795)
@@ -1,5 +1,19 @@
 2013-01-04  Zan Dobersek  <[email protected]>
 
+        REGRESSION (r138184): transitions/transitions-parsing.html is failing on GTK
+        https://bugs.webkit.org/show_bug.cgi?id=105522
+
+        Reviewed by Xan Lopez.
+
+        Remove the feature define overriding for the unprefixed CSS transition property names
+        define as it is not required.
+
+        No new tests - no new functionality.
+
+        * GNUmakefile.am:
+
+2013-01-04  Zan Dobersek  <[email protected]>
+
         [GObject bindings] Wrap event target interface code in feature define guards if necessary
         https://bugs.webkit.org/show_bug.cgi?id=105743
 

Modified: trunk/Source/WebCore/GNUmakefile.am (138794 => 138795)


--- trunk/Source/WebCore/GNUmakefile.am	2013-01-04 14:13:28 UTC (rev 138794)
+++ trunk/Source/WebCore/GNUmakefile.am	2013-01-04 14:15:34 UTC (rev 138795)
@@ -197,15 +197,6 @@
 endif # END ENABLE_XSLT
 
 # ----
-# Unprefixed CSS Transforms, Animation and Transitions
-# ----
-if ENABLE_CSS_TRANSFORMS_ANIMATIONS_TRANSITIONS_UNPREFIXED
-feature_defines_overrides += ENABLE_CSS_TRANSFORMS_ANIMATIONS_TRANSITIONS_UNPREFIXED=1
-else
-feature_defines_overrides += ENABLE_CSS_TRANSFORMS_ANIMATIONS_TRANSITIONS_UNPREFIXED=0
-endif # END ENABLE_CSS_TRANSFORMS_ANIMATIONS_TRANSITIONS_UNPREFIXED
-
-# ----
 # Shaders
 # ----
 if ENABLE_CSS_SHADERS

Modified: trunk/configure.ac (138794 => 138795)


--- trunk/configure.ac	2013-01-04 14:13:28 UTC (rev 138794)
+++ trunk/configure.ac	2013-01-04 14:15:34 UTC (rev 138795)
@@ -673,14 +673,6 @@
               [],[enable_xslt="yes"])
 AC_MSG_RESULT([$enable_xslt])
 
-# check whether to enable unprefixed support for CSS Transforms, Animations and Transitions
-AC_MSG_CHECKING([whether to enable support for unprefixed CSS Transforms, Animations and Transitions])
-AC_ARG_ENABLE(xslt,
-              AC_HELP_STRING([--enable-unprefixed-css-transforms-animations-transitions],
-                             [enable support for for unprefixed CSS Transforms, Animations and Transitions [default=yes]]),
-              [],[enable_css_transforms_animations_transitions_unprefixed="yes"])
-AC_MSG_RESULT([$enable_css_transforms_animations_transitions_unprefixed])
-
 # check whether to enable geolocation support
 AC_MSG_CHECKING([whether to enable geolocation support])
 AC_ARG_ENABLE(geolocation,
@@ -1158,7 +1150,6 @@
 AM_CONDITIONAL([ENABLE_SPELLCHECK],[test "$enable_spellcheck" = "yes"])
 AM_CONDITIONAL([ENABLE_CSS_FILTERS],[test "$enable_css_filters" = "yes"])
 AM_CONDITIONAL([ENABLE_CSS_SHADERS],[test "$enable_css_shaders" = "yes"])
-AM_CONDITIONAL([ENABLE_CSS_TRANSFORMS_ANIMATIONS_TRANSITIONS_UNPREFIXED],[test "$enable_css_transforms_animations_transitions_unprefixed" = "yes"])
 
 # Gtk conditionals
 AM_CONDITIONAL([ENABLE_INTROSPECTION],[test "$enable_introspection" = "yes"])
@@ -1223,7 +1214,6 @@
  SVG fonts support                                        : $enable_svg_fonts
  SVG support                                              : $enable_svg
  Spellcheck support                                       : $enable_spellcheck
- Unprefixed support for CSS Transforms, animations and transtions : enable_css_transforms_animations_transitions_unprefixed
  Web Audio support                                        : $enable_web_audio
  WebGL                                                    : $enable_webgl
  XSLT support                                             : $enable_xslt
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to