Title: [109039] trunk
Revision
109039
Author
commit-qu...@webkit.org
Date
2012-02-27 16:36:14 -0800 (Mon, 27 Feb 2012)

Log Message

[EFL] Support mutation observers
https://bugs.webkit.org/show_bug.cgi?id=79603

Patch by ChangSeok Oh <shivami...@gmail.com> on 2012-02-27
Reviewed by Eric Seidel.

.:

Added a build-option for the mutation observers feature.

* Source/cmake/OptionsEfl.cmake:
* Source/cmakeconfig.h.cmake:

LayoutTests:

Rebased skipped tests regarding the mutation observers feature.

* platform/efl/Skipped:

Modified Paths

Diff

Modified: trunk/ChangeLog (109038 => 109039)


--- trunk/ChangeLog	2012-02-28 00:31:28 UTC (rev 109038)
+++ trunk/ChangeLog	2012-02-28 00:36:14 UTC (rev 109039)
@@ -1,3 +1,15 @@
+2012-02-27  ChangSeok Oh  <shivami...@gmail.com>
+
+        [EFL] Support mutation observers
+        https://bugs.webkit.org/show_bug.cgi?id=79603
+
+        Reviewed by Eric Seidel.
+
+        Added a build-option for the mutation observers feature.
+
+        * Source/cmake/OptionsEfl.cmake:
+        * Source/cmakeconfig.h.cmake:
+
 2012-02-26  Shinya Kawanaka  <shin...@chromium.org>
 
         Rename ShadowRootList to ShadowTree.

Modified: trunk/LayoutTests/ChangeLog (109038 => 109039)


--- trunk/LayoutTests/ChangeLog	2012-02-28 00:31:28 UTC (rev 109038)
+++ trunk/LayoutTests/ChangeLog	2012-02-28 00:36:14 UTC (rev 109039)
@@ -1,3 +1,14 @@
+2012-02-27  ChangSeok Oh  <shivami...@gmail.com>
+
+        [EFL] Support mutation observers
+        https://bugs.webkit.org/show_bug.cgi?id=79603
+
+        Reviewed by Eric Seidel.
+
+        Rebased skipped tests regarding the mutation observers feature.
+
+        * platform/efl/Skipped:
+
 2012-02-27  Kentaro Hara  <hara...@chromium.org>
 
         [JSC] Add [ConstructorParameters=] to all custom constructors

Modified: trunk/LayoutTests/platform/efl/Skipped (109038 => 109039)


--- trunk/LayoutTests/platform/efl/Skipped	2012-02-28 00:31:28 UTC (rev 109038)
+++ trunk/LayoutTests/platform/efl/Skipped	2012-02-28 00:36:14 UTC (rev 109039)
@@ -1065,7 +1065,7 @@
 fast/filesystem
 http/tests/filesystem
 http/tests/security/filesystem-iframe-from-remote.html
-fast/mutation/end-of-task-delivery.html
+fast/mutation/filesystem-callback-delivery.html
 
 # The EFL port has no support for Geolocation
 fast/dom/Geolocation
@@ -1248,7 +1248,12 @@
 # Fails because MutationObservers are not notified at end-of-task
 # https://bugs.webkit.org/show_bug.cgi?id=78290
 fast/mutation/end-of-task-delivery.html
+fast/mutation/inline-event-listener.html
 
+# Fails because of the security policy of the user agent?
+# http://webkit.org/b/79604
+fast/mutation/database-callback-delivery.html
+
 # --------------------------------
 # Tests which are expected to fail
 # --------------------------------
@@ -2212,17 +2217,6 @@
 fast/mediastream/peerconnection-argument-types.html
 fast/mediastream/peerconnection-eventlistener-optional-argument.html
 fast/mediastream/peerconnection-removestream.html
-fast/mutation/callback-second-argument.html
-fast/mutation/cross-document.html
-fast/mutation/database-callback-delivery.html
-fast/mutation/filesystem-callback-delivery.html
-fast/mutation/inline-event-listener.html
-fast/mutation/mutation-observer-constructor.html
-fast/mutation/observe-attributes.html
-fast/mutation/observe-characterdata.html
-fast/mutation/observe-childList.html
-fast/mutation/observe-exceptions.html
-fast/mutation/observe-subtree.html
 fast/multicol
 fast/overflow/overflow-float-stacking.html
 fast/overflow/overflow-stacking.html

Modified: trunk/Source/cmake/OptionsEfl.cmake (109038 => 109039)


--- trunk/Source/cmake/OptionsEfl.cmake	2012-02-28 00:31:28 UTC (rev 109038)
+++ trunk/Source/cmake/OptionsEfl.cmake	2012-02-28 00:36:14 UTC (rev 109039)
@@ -82,6 +82,7 @@
 WEBKIT_FEATURE(ENABLE_MATHML "Enable MathML" DEFAULT ON)
 WEBKIT_FEATURE(ENABLE_METER_TAG "Enable Meter tag" DEFAULT ON)
 WEBKIT_FEATURE(ENABLE_MICRODATA "Enable HTML5 microdata support" DEFAULT OFF)
+WEBKIT_FEATURE(ENABLE_MUTATION_OBSERVERS "Enable HTML5 mutation observers support" DEFAULT ON)
 WEBKIT_FEATURE(ENABLE_NETSCAPE_PLUGIN_API "Enable Netscape plugin API" DEFAULT OFF)
 WEBKIT_FEATURE(ENABLE_NOTIFICATIONS "Enable notifications" DEFAULT OFF)
 WEBKIT_FEATURE(ENABLE_ORIENTATION_EVENTS "Enable orientation events" DEFAULT OFF)

Modified: trunk/Source/cmakeconfig.h.cmake (109038 => 109039)


--- trunk/Source/cmakeconfig.h.cmake	2012-02-28 00:31:28 UTC (rev 109038)
+++ trunk/Source/cmakeconfig.h.cmake	2012-02-28 00:36:14 UTC (rev 109039)
@@ -27,6 +27,7 @@
 #cmakedefine01 ENABLE_MATHML
 #cmakedefine01 ENABLE_METER_TAG
 #cmakedefine01 ENABLE_MICRODATA
+#cmakedefine01 ENABLE_MUTATION_OBSERVERS
 #cmakedefine01 ENABLE_NETSCAPE_PLUGIN_API
 #cmakedefine01 ENABLE_NOTIFICATIONS
 #cmakedefine01 ENABLE_ORIENTATION_EVENTS
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to