Title: [236712] trunk/Tools
Revision
236712
Author
ross.kirsl...@sony.com
Date
2018-10-01 22:24:44 -0700 (Mon, 01 Oct 2018)

Log Message

[Win][DRT] Actually set "experimental:WebAnimationsCSSIntegrationEnabled" when requested
https://bugs.webkit.org/show_bug.cgi?id=190150

Reviewed by Fujii Hironori.

* DumpRenderTree/win/DumpRenderTree.cpp:
(setWebPreferencesForTestOptions):
DRT has been recognizing this field, but not propagating its value to WebPreferences.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (236711 => 236712)


--- trunk/Tools/ChangeLog	2018-10-02 04:58:52 UTC (rev 236711)
+++ trunk/Tools/ChangeLog	2018-10-02 05:24:44 UTC (rev 236712)
@@ -1,3 +1,14 @@
+2018-10-01  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        [Win][DRT] Actually set "experimental:WebAnimationsCSSIntegrationEnabled" when requested
+        https://bugs.webkit.org/show_bug.cgi?id=190150
+
+        Reviewed by Fujii Hironori.
+
+        * DumpRenderTree/win/DumpRenderTree.cpp:
+        (setWebPreferencesForTestOptions):
+        DRT has been recognizing this field, but not propagating its value to WebPreferences.
+
 2018-10-01  Alex Christensen  <achristen...@webkit.org>
 
         Unreviewed, rolling out r236551.

Modified: trunk/Tools/DumpRenderTree/win/DumpRenderTree.cpp (236711 => 236712)


--- trunk/Tools/DumpRenderTree/win/DumpRenderTree.cpp	2018-10-02 04:58:52 UTC (rev 236711)
+++ trunk/Tools/DumpRenderTree/win/DumpRenderTree.cpp	2018-10-02 05:24:44 UTC (rev 236712)
@@ -895,6 +895,7 @@
 {
     COMPtr<IWebPreferencesPrivate6> prefsPrivate { Query, preferences };
 
+    prefsPrivate->setWebAnimationsCSSIntegrationEnabled(options.enableWebAnimationsCSSIntegration);
     prefsPrivate->setMenuItemElementEnabled(options.enableMenuItemElement);
     prefsPrivate->setModernMediaControlsEnabled(options.enableModernMediaControls);
     prefsPrivate->setIsSecureContextAttributeEnabled(options.enableIsSecureContextAttribute);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to