Title: [110883] trunk/Tools
Revision
110883
Author
[email protected]
Date
2012-03-15 14:07:37 -0700 (Thu, 15 Mar 2012)

Log Message

fast/dom/Window/window-properties.html and fast/dom/prototype-inheritance-2.html failing on
Mac WK2 because WebAudio is not enabled
https://bugs.webkit.org/show_bug.cgi?id=81259

Reviewed by Dan Bernstein.

Enable WebAudio so that it appears in the window object in the tests.
The webaudio tests are all still skipped in the Mac Skipped list.

* WebKitTestRunner/TestController.cpp:
(WTR::TestController::resetStateToConsistentValues):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (110882 => 110883)


--- trunk/Tools/ChangeLog	2012-03-15 21:07:16 UTC (rev 110882)
+++ trunk/Tools/ChangeLog	2012-03-15 21:07:37 UTC (rev 110883)
@@ -1,3 +1,17 @@
+2012-03-15  Jessie Berlin  <[email protected]>
+
+        fast/dom/Window/window-properties.html and fast/dom/prototype-inheritance-2.html failing on
+        Mac WK2 because WebAudio is not enabled
+        https://bugs.webkit.org/show_bug.cgi?id=81259
+
+        Reviewed by Dan Bernstein.
+
+        Enable WebAudio so that it appears in the window object in the tests.
+        The webaudio tests are all still skipped in the Mac Skipped list.
+
+        * WebKitTestRunner/TestController.cpp:
+        (WTR::TestController::resetStateToConsistentValues):
+
 2012-03-15  David Levin  <[email protected]>
 
         Various autoresize fixes.

Modified: trunk/Tools/WebKitTestRunner/TestController.cpp (110882 => 110883)


--- trunk/Tools/WebKitTestRunner/TestController.cpp	2012-03-15 21:07:16 UTC (rev 110882)
+++ trunk/Tools/WebKitTestRunner/TestController.cpp	2012-03-15 21:07:37 UTC (rev 110883)
@@ -436,6 +436,7 @@
     WKPreferencesSetOfflineWebApplicationCacheEnabled(preferences, true);
     WKPreferencesSetFontSmoothingLevel(preferences, kWKFontSmoothingLevelNoSubpixelAntiAliasing);
     WKPreferencesSetXSSAuditorEnabled(preferences, false);
+    WKPreferencesSetWebAudioEnabled(preferences, true);
     WKPreferencesSetDeveloperExtrasEnabled(preferences, true);
     WKPreferencesSetJavaScriptCanOpenWindowsAutomatically(preferences, true);
     WKPreferencesSetJavaScriptCanAccessClipboard(preferences, true);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to