Title: [119780] trunk/Tools
Revision
119780
Author
[email protected]
Date
2012-06-07 18:33:25 -0700 (Thu, 07 Jun 2012)

Log Message

[EFL] [DRT] DRT enables WebAudio when WebAudio feature is enabled.
https://bugs.webkit.org/show_bug.cgi?id=88491

Patch by Dongwoo Im <[email protected]> on 2012-06-07
Reviewed by Dirk Pranke.

DRT should enable WebAudio when WebAudio feature is enabled,
so that the WebAudio feature could be tested by the Layouttest.

* DumpRenderTree/efl/LayoutTestControllerEfl.cpp: Enable WebAudio when WebAudio feature is enabled.
(LayoutTestController::overridePreference):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (119779 => 119780)


--- trunk/Tools/ChangeLog	2012-06-08 01:31:21 UTC (rev 119779)
+++ trunk/Tools/ChangeLog	2012-06-08 01:33:25 UTC (rev 119780)
@@ -1,3 +1,16 @@
+2012-06-07  Dongwoo Im  <[email protected]>
+
+        [EFL] [DRT] DRT enables WebAudio when WebAudio feature is enabled.
+        https://bugs.webkit.org/show_bug.cgi?id=88491
+
+        Reviewed by Dirk Pranke.
+
+        DRT should enable WebAudio when WebAudio feature is enabled,
+        so that the WebAudio feature could be tested by the Layouttest.
+
+        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp: Enable WebAudio when WebAudio feature is enabled.
+        (LayoutTestController::overridePreference):
+
 2012-06-07  Dirk Pranke  <[email protected]>
 
         webkit-patch rebaseline-expectations should only rebaseline the appropriate suffixes for the failure in question

Modified: trunk/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp (119779 => 119780)


--- trunk/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp	2012-06-08 01:31:21 UTC (rev 119779)
+++ trunk/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp	2012-06-08 01:33:25 UTC (rev 119780)
@@ -716,6 +716,8 @@
         DumpRenderTreeSupportEfl::setLoadsSiteIconsIgnoringImageLoadingSetting(browser->mainView(), toBool(value));
     else if (equals(key, "WebKitCSSGridLayoutEnabled"))
         DumpRenderTreeSupportEfl::setCSSGridLayoutEnabled(browser->mainView(), toBool(value));
+    else if (equals(key, "WebKitWebAudioEnabled"))
+        ewk_view_setting_web_audio_set(browser->mainView(), toBool(value));
     else
         fprintf(stderr, "LayoutTestController::overridePreference tried to override unknown preference '%s'.\n", value->ustring().utf8().data());
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to