Title: [285344] trunk/Source/WebCore
Revision
285344
Author
grao...@webkit.org
Date
2021-11-05 10:34:07 -0700 (Fri, 05 Nov 2021)

Log Message

[Media Controls] Volume button orientation is always stuck to right-to-left
https://bugs.webkit.org/show_bug.cgi?id=232761

Reviewed by Dean Jackson.

* Modules/modern-media-controls/controls/media-controls.js:
(MediaControls.prototype.set usesLTRUserInterfaceLayoutDirection):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (285343 => 285344)


--- trunk/Source/WebCore/ChangeLog	2021-11-05 17:18:00 UTC (rev 285343)
+++ trunk/Source/WebCore/ChangeLog	2021-11-05 17:34:07 UTC (rev 285344)
@@ -1,3 +1,13 @@
+2021-11-05  Antoine Quint  <grao...@webkit.org>
+
+        [Media Controls] Volume button orientation is always stuck to right-to-left
+        https://bugs.webkit.org/show_bug.cgi?id=232761
+
+        Reviewed by Dean Jackson.
+
+        * Modules/modern-media-controls/controls/media-controls.js:
+        (MediaControls.prototype.set usesLTRUserInterfaceLayoutDirection):
+
 2021-11-05  Kiet Ho  <th...@apple.com>
 
         Implement parsing and animation support for offset-path

Modified: trunk/Source/WebCore/Modules/modern-media-controls/controls/media-controls.js (285343 => 285344)


--- trunk/Source/WebCore/Modules/modern-media-controls/controls/media-controls.js	2021-11-05 17:18:00 UTC (rev 285343)
+++ trunk/Source/WebCore/Modules/modern-media-controls/controls/media-controls.js	2021-11-05 17:34:07 UTC (rev 285344)
@@ -121,6 +121,7 @@
         this.element.classList.toggle("uses-ltr-user-interface-layout-direction", flag);
 
         this.muteButton.usesLTRUserInterfaceLayoutDirection = this.usesLTRUserInterfaceLayoutDirection;
+        this.volumeButton.usesLTRUserInterfaceLayoutDirection = this.usesLTRUserInterfaceLayoutDirection
     }
 
     get scaleFactor()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to