Title: [265682] trunk/Source/WebInspectorUI
Revision
265682
Author
[email protected]
Date
2020-08-14 11:24:53 -0700 (Fri, 14 Aug 2020)

Log Message

Web Inspector: add aria-label for [>>] overflow tab picker
https://bugs.webkit.org/show_bug.cgi?id=215342
<rdar://problem/66804113>

Patch by Patrick Angle <[email protected]> on 2020-08-14
Reviewed by Devin Rousso.

* UserInterface/Views/TabBar.js: Moved title for `tabPickerTabBarItem` to `title` attribute instead of the unused `displayName` argument
(WI.TabBar):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (265681 => 265682)


--- trunk/Source/WebInspectorUI/ChangeLog	2020-08-14 18:19:42 UTC (rev 265681)
+++ trunk/Source/WebInspectorUI/ChangeLog	2020-08-14 18:24:53 UTC (rev 265682)
@@ -1,5 +1,16 @@
 2020-08-14  Patrick Angle  <[email protected]>
 
+        Web Inspector: add aria-label for [>>] overflow tab picker
+        https://bugs.webkit.org/show_bug.cgi?id=215342
+        <rdar://problem/66804113>
+
+        Reviewed by Devin Rousso.
+
+        * UserInterface/Views/TabBar.js: Moved title for `tabPickerTabBarItem` to `title` attribute instead of the unused `displayName` argument
+        (WI.TabBar):
+
+2020-08-14  Patrick Angle  <[email protected]>
+
         REGRESSION (r265224): Web Inspector: LOCALIZED STRING NOT FOUND next to the Image checkbox in the Sources prefs panel
         https://bugs.webkit.org/show_bug.cgi?id=215387
         <rdar://problem/66855263>

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TabBar.js (265681 => 265682)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TabBar.js	2020-08-14 18:19:42 UTC (rev 265681)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TabBar.js	2020-08-14 18:24:53 UTC (rev 265682)
@@ -62,7 +62,8 @@
         this._hiddenTabBarItems = [];
 
         const tabPickerRepresentedObject = null;
-        this._tabPickerTabBarItem = new WI.PinnedTabBarItem(tabPickerRepresentedObject, "Images/TabPicker.svg", WI.UIString("Show hidden tabs"));
+        const tabPickerDisplayName = null;
+        this._tabPickerTabBarItem = new WI.PinnedTabBarItem(tabPickerRepresentedObject, "Images/TabPicker.svg", tabPickerDisplayName, WI.UIString("Show hidden tabs"));
         this._tabPickerTabBarItem.hidden = true;
         this._tabPickerTabBarItem.element.classList.add("tab-picker");
         this.addTabBarItem(this._tabPickerTabBarItem, {suppressAnimations: true});
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to