Title: [121734] trunk
Revision
121734
Author
[email protected]
Date
2012-07-03 00:01:58 -0700 (Tue, 03 Jul 2012)

Log Message

[EFL] Enable MICRODATA support
https://bugs.webkit.org/show_bug.cgi?id=90377

Patch by Christophe Dumez <[email protected]> on 2012-07-03
Reviewed by Kenneth Rohde Christiansen.

.:

Turn on MICRODATA support by default for EFL port.

* Source/cmake/OptionsEfl.cmake:

Tools:

Turn on MICRODATA flag for EFL port by default.

* Scripts/webkitperl/FeatureList.pm:

LayoutTests:

Unskip microdata test cases now that support has been
enabled for EFL port.

* platform/efl/Skipped:

Modified Paths

Diff

Modified: trunk/ChangeLog (121733 => 121734)


--- trunk/ChangeLog	2012-07-03 06:54:42 UTC (rev 121733)
+++ trunk/ChangeLog	2012-07-03 07:01:58 UTC (rev 121734)
@@ -1,3 +1,14 @@
+2012-07-03  Christophe Dumez  <[email protected]>
+
+        [EFL] Enable MICRODATA support
+        https://bugs.webkit.org/show_bug.cgi?id=90377
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Turn on MICRODATA support by default for EFL port.
+
+        * Source/cmake/OptionsEfl.cmake:
+
 2012-07-02  George Staikos  <[email protected]>
 
         [BlackBerry] Enable scoped style for BlackBerry.

Modified: trunk/LayoutTests/ChangeLog (121733 => 121734)


--- trunk/LayoutTests/ChangeLog	2012-07-03 06:54:42 UTC (rev 121733)
+++ trunk/LayoutTests/ChangeLog	2012-07-03 07:01:58 UTC (rev 121734)
@@ -1,3 +1,15 @@
+2012-07-03  Christophe Dumez  <[email protected]>
+
+        [EFL] Enable MICRODATA support
+        https://bugs.webkit.org/show_bug.cgi?id=90377
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Unskip microdata test cases now that support has been
+        enabled for EFL port.
+
+        * platform/efl/Skipped:
+
 2012-07-02  Yoshifumi Inoue  <[email protected]>
 
         Layout Test inspector/timeline/timeline-receive-response-event.html is failing

Modified: trunk/LayoutTests/platform/efl/Skipped (121733 => 121734)


--- trunk/LayoutTests/platform/efl/Skipped	2012-07-03 06:54:42 UTC (rev 121733)
+++ trunk/LayoutTests/platform/efl/Skipped	2012-07-03 07:01:58 UTC (rev 121734)
@@ -754,9 +754,6 @@
 # Skipped until new WebSocket protocol is implemented. http://webkit.org/b/50099
 http/tests/websocket/tests/hybi/
 
-# Microdata DOM API is not yet enabled.
-fast/dom/MicroData
-
 # Pointer Lock is not implemented.
 pointer-lock/
 

Modified: trunk/Source/cmake/OptionsEfl.cmake (121733 => 121734)


--- trunk/Source/cmake/OptionsEfl.cmake	2012-07-03 06:54:42 UTC (rev 121733)
+++ trunk/Source/cmake/OptionsEfl.cmake	2012-07-03 07:01:58 UTC (rev 121734)
@@ -79,6 +79,7 @@
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_GLIB_SUPPORT ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_INPUT_TYPE_COLOR ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_LEGACY_WEBKIT_BLOB_BUILDER ON)
+WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MICRODATA ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_NETSCAPE_PLUGIN_API OFF)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_NETWORK_INFO ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_PAGE_VISIBILITY_API ON)

Modified: trunk/Tools/ChangeLog (121733 => 121734)


--- trunk/Tools/ChangeLog	2012-07-03 06:54:42 UTC (rev 121733)
+++ trunk/Tools/ChangeLog	2012-07-03 07:01:58 UTC (rev 121734)
@@ -1,3 +1,14 @@
+2012-07-03  Christophe Dumez  <[email protected]>
+
+        [EFL] Enable MICRODATA support
+        https://bugs.webkit.org/show_bug.cgi?id=90377
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Turn on MICRODATA flag for EFL port by default.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
 2012-07-02  George Staikos  <[email protected]>
 
         [BlackBerry] Enable scoped style for BlackBerry.

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (121733 => 121734)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2012-07-03 06:54:42 UTC (rev 121733)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2012-07-03 07:01:58 UTC (rev 121734)
@@ -292,7 +292,7 @@
       define => "ENABLE_MHTML", default => 0, value => \$mhtmlSupport },
 
     { option => "microdata", desc => "Toggle Microdata support",
-      define => "ENABLE_MICRODATA", default => 0, value => \$microdataSupport },
+      define => "ENABLE_MICRODATA", default => isEfl(), value => \$microdataSupport },
 
     { option => "mutation-observers", desc => "Toggle Mutation Observers support",
       define => "ENABLE_MUTATION_OBSERVERS", default => 1, value => \$mutationObserversSupport },
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to