Title: [227072] trunk/Source/WebInspectorUI
Revision
227072
Author
[email protected]
Date
2018-01-17 10:41:56 -0800 (Wed, 17 Jan 2018)

Log Message

Web Inspector: Super long URL string causes bad wrapping in Resources detail sidebar
https://bugs.webkit.org/show_bug.cgi?id=181617

Patch by Joseph Pecoraro <[email protected]> on 2018-01-17
Reviewed by Brian Burg.

* UserInterface/Views/DetailsSection.css:
(.details-section > .content > .group > .row.simple > .value):
Set the break to all characters.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (227071 => 227072)


--- trunk/Source/WebInspectorUI/ChangeLog	2018-01-17 18:26:56 UTC (rev 227071)
+++ trunk/Source/WebInspectorUI/ChangeLog	2018-01-17 18:41:56 UTC (rev 227072)
@@ -1,3 +1,14 @@
+2018-01-17  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Super long URL string causes bad wrapping in Resources detail sidebar
+        https://bugs.webkit.org/show_bug.cgi?id=181617
+
+        Reviewed by Brian Burg.
+
+        * UserInterface/Views/DetailsSection.css:
+        (.details-section > .content > .group > .row.simple > .value):
+        Set the break to all characters.
+
 2018-01-16  Matt Baker  <[email protected]>
 
         Web Inspector: Canvas tab: typing a "space" in the QuickConsole shouldn't trigger a recording

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css (227071 => 227072)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css	2018-01-17 18:26:56 UTC (rev 227071)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css	2018-01-17 18:41:56 UTC (rev 227072)
@@ -257,6 +257,7 @@
 }
 
 .details-section > .content > .group > .row.simple > .value {
+    word-break: break-all;
     word-wrap: break-word;
     cursor: text;
     -webkit-user-select: text;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to