Title: [90876] trunk
Revision
90876
Author
[email protected]
Date
2011-07-12 18:33:50 -0700 (Tue, 12 Jul 2011)

Log Message

Enable Web Audio for chromium DRT
https://bugs.webkit.org/show_bug.cgi?id=64409

Reviewed by James Robinson.

Tools: 

* DumpRenderTree/chromium/TestShell.cpp:
(TestShell::TestShell):

LayoutTests: 

* platform/chromium/fast/dom/prototype-inheritance-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (90875 => 90876)


--- trunk/LayoutTests/ChangeLog	2011-07-13 00:53:17 UTC (rev 90875)
+++ trunk/LayoutTests/ChangeLog	2011-07-13 01:33:50 UTC (rev 90876)
@@ -1,3 +1,12 @@
+2011-07-12  Chris Rogers  <[email protected]>
+
+        Enable Web Audio for chromium DRT
+        https://bugs.webkit.org/show_bug.cgi?id=64409
+
+        Reviewed by James Robinson.
+
+        * platform/chromium/fast/dom/prototype-inheritance-expected.txt:
+
 2011-07-12  Oliver Hunt  <[email protected]>
 
         Overzealous type validation in method_check

Modified: trunk/LayoutTests/platform/chromium/fast/dom/prototype-inheritance-expected.txt (90875 => 90876)


--- trunk/LayoutTests/platform/chromium/fast/dom/prototype-inheritance-expected.txt	2011-07-13 00:53:17 UTC (rev 90875)
+++ trunk/LayoutTests/platform/chromium/fast/dom/prototype-inheritance-expected.txt	2011-07-13 01:33:50 UTC (rev 90876)
@@ -791,6 +791,8 @@
 FAIL inner.toolbar.constructor.isInner should be true. Was false.
 PASS inner.unescape.isInner is true
 PASS inner.unescape.constructor.isInner is true
+PASS inner.webkitAudioContext.isInner is true
+PASS inner.webkitAudioContext.constructor.isInner is true
 PASS inner.webkitCancelRequestAnimationFrame.isInner is true
 PASS inner.webkitCancelRequestAnimationFrame.constructor.isInner is true
 PASS inner.webkitConvertPointFromNodeToPage.isInner is true

Modified: trunk/Tools/ChangeLog (90875 => 90876)


--- trunk/Tools/ChangeLog	2011-07-13 00:53:17 UTC (rev 90875)
+++ trunk/Tools/ChangeLog	2011-07-13 01:33:50 UTC (rev 90876)
@@ -1,3 +1,13 @@
+2011-07-12  Chris Rogers  <[email protected]>
+
+        Enable Web Audio for chromium DRT
+        https://bugs.webkit.org/show_bug.cgi?id=64409
+
+        Reviewed by James Robinson.
+
+        * DumpRenderTree/chromium/TestShell.cpp:
+        (TestShell::TestShell):
+
 2011-07-12  Adam Barth  <[email protected]>
 
         Tweak some UI in garden-o-matic now that the tree actually has a

Modified: trunk/Tools/DumpRenderTree/chromium/TestShell.cpp (90875 => 90876)


--- trunk/Tools/DumpRenderTree/chromium/TestShell.cpp	2011-07-13 00:53:17 UTC (rev 90875)
+++ trunk/Tools/DumpRenderTree/chromium/TestShell.cpp	2011-07-13 01:33:50 UTC (rev 90876)
@@ -117,6 +117,7 @@
     WebRuntimeFeatures::enableFileSystem(true);
     WebRuntimeFeatures::enableJavaScriptI18NAPI(true);
     WebRuntimeFeatures::enableMediaStream(true);
+    WebRuntimeFeatures::enableWebAudio(true); 
 
     m_webPermissions = adoptPtr(new WebPermissions());
     m_accessibilityController = adoptPtr(new AccessibilityController(this));
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to