Title: [155169] trunk/Source/WebInspectorUI
Revision
155169
Author
[email protected]
Date
2013-09-05 20:33:57 -0700 (Thu, 05 Sep 2013)

Log Message

Web Inspector: Breakpoint Action JS Editor has line wrapping issues with long no-space lines
https://bugs.webkit.org/show_bug.cgi?id=120822

Patch by Joseph Pecoraro <[email protected]> on 2013-09-05
Reviewed by Timothy Hatcher.

* UserInterface/BreakpointActionView.css:
(.breakpoint-action-eval-editor > .CodeMirror):
(.breakpoint-action-eval-editor > .CodeMirror-scroll):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (155168 => 155169)


--- trunk/Source/WebInspectorUI/ChangeLog	2013-09-06 01:34:05 UTC (rev 155168)
+++ trunk/Source/WebInspectorUI/ChangeLog	2013-09-06 03:33:57 UTC (rev 155169)
@@ -1,5 +1,16 @@
 2013-09-05  Joseph Pecoraro  <[email protected]>
 
+        Web Inspector: Breakpoint Action JS Editor has line wrapping issues with long no-space lines
+        https://bugs.webkit.org/show_bug.cgi?id=120822
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/BreakpointActionView.css:
+        (.breakpoint-action-eval-editor > .CodeMirror):
+        (.breakpoint-action-eval-editor > .CodeMirror-scroll):
+
+2013-09-05  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: Edit Breakpoint popover sometimes appears misplaced in top left
         https://bugs.webkit.org/show_bug.cgi?id=120804
 

Modified: trunk/Source/WebInspectorUI/UserInterface/BreakpointActionView.css (155168 => 155169)


--- trunk/Source/WebInspectorUI/UserInterface/BreakpointActionView.css	2013-09-06 01:34:05 UTC (rev 155168)
+++ trunk/Source/WebInspectorUI/UserInterface/BreakpointActionView.css	2013-09-06 03:33:57 UTC (rev 155169)
@@ -75,11 +75,11 @@
 }
 
 .breakpoint-action-eval-editor > .CodeMirror {
-    width: 100%;
+    width: 336px; /* NOTE: Fixed value, manually tuned to .edit-breakpoint-popover-content.wide width */
     height: auto;
 }
 
 .breakpoint-action-eval-editor > .CodeMirror-scroll {
-    width: 100%;
+    width: 336px; /* NOTE: Fixed value, manually tuned to .edit-breakpoint-popover-content.wide width */
     overflow: hidden;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to