Title: [269219] trunk/Source/WTF
Revision
269219
Author
[email protected]
Date
2020-10-30 20:21:44 -0700 (Fri, 30 Oct 2020)

Log Message

REGRESSION (r267689): Rise of the Tomb Raider gets stuck while launching
https://bugs.webkit.org/show_bug.cgi?id=218411
<rdar://problem/70622557>

Reviewed by Zalan Bujtas.

* Scripts/Preferences/WebPreferences.yaml:
Sam accidentally changed the default of RequiresUserGestureForMediaPlayback
in r267689; previously it was @YES only in PLATFORM(IOS_FAMILY), he made
it true globally.

Go back to the old, and intended, behavior.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (269218 => 269219)


--- trunk/Source/WTF/ChangeLog	2020-10-31 02:00:16 UTC (rev 269218)
+++ trunk/Source/WTF/ChangeLog	2020-10-31 03:21:44 UTC (rev 269219)
@@ -1,3 +1,18 @@
+2020-10-30  Tim Horton  <[email protected]>
+
+        REGRESSION (r267689): Rise of the Tomb Raider gets stuck while launching
+        https://bugs.webkit.org/show_bug.cgi?id=218411
+        <rdar://problem/70622557>
+
+        Reviewed by Zalan Bujtas.
+
+        * Scripts/Preferences/WebPreferences.yaml:
+        Sam accidentally changed the default of RequiresUserGestureForMediaPlayback
+        in r267689; previously it was @YES only in PLATFORM(IOS_FAMILY), he made
+        it true globally.
+
+        Go back to the old, and intended, behavior.
+
 2020-10-30  Chris Fleizach  <[email protected]>
 
         AX: Incorrect list of voices being displayed on iOS

Modified: trunk/Source/WTF/Scripts/Preferences/WebPreferences.yaml (269218 => 269219)


--- trunk/Source/WTF/Scripts/Preferences/WebPreferences.yaml	2020-10-31 02:00:16 UTC (rev 269218)
+++ trunk/Source/WTF/Scripts/Preferences/WebPreferences.yaml	2020-10-31 03:21:44 UTC (rev 269219)
@@ -1647,7 +1647,8 @@
   webcoreBinding: custom
   defaultValue:
     WebKitLegacy:
-      default: true
+      "PLATFORM(IOS_FAMILY)": true
+      default: false
     WebKit:
       default: false
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to