Title: [234431] trunk/Source/WebInspectorUI
Revision
234431
Author
[email protected]
Date
2018-07-31 11:23:01 -0700 (Tue, 31 Jul 2018)

Log Message

Web Inspector: Include a full URL tooltip when hovering the name in the Network Tab
https://bugs.webkit.org/show_bug.cgi?id=188199

Patch by Joseph Pecoraro <[email protected]> on 2018-07-31
Reviewed by Matt Baker.

* UserInterface/Views/NetworkTableContentView.js:
(WI.NetworkTableContentView.prototype._populateNameCell):
Give a tooltip to the entire cell since the entire cell has interactivity.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (234430 => 234431)


--- trunk/Source/WebInspectorUI/ChangeLog	2018-07-31 18:07:31 UTC (rev 234430)
+++ trunk/Source/WebInspectorUI/ChangeLog	2018-07-31 18:23:01 UTC (rev 234431)
@@ -1,3 +1,14 @@
+2018-07-31  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Include a full URL tooltip when hovering the name in the Network Tab
+        https://bugs.webkit.org/show_bug.cgi?id=188199
+
+        Reviewed by Matt Baker.
+
+        * UserInterface/Views/NetworkTableContentView.js:
+        (WI.NetworkTableContentView.prototype._populateNameCell):
+        Give a tooltip to the entire cell since the entire cell has interactivity.
+
 2018-07-30  Nikita Vasilyev  <[email protected]>
 
         Web Inspector: Dark Mode: Search sidebar panel text field has a white background

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.js (234430 => 234431)


--- trunk/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.js	2018-07-31 18:07:31 UTC (rev 234430)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.js	2018-07-31 18:23:01 UTC (rev 234431)
@@ -441,6 +441,8 @@
 
         let nameElement = cell.appendChild(document.createElement("span"));
         nameElement.textContent = entry.name;
+
+        cell.title = entry.resource.url;
     }
 
     _populateDomainCell(cell, entry)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to