Title: [205517] trunk/Source/WebInspectorUI
Revision
205517
Author
[email protected]
Date
2016-09-06 16:03:27 -0700 (Tue, 06 Sep 2016)

Log Message

Web Inspector: CodeMirror in resource content view should not show 'CR' characters
https://bugs.webkit.org/show_bug.cgi?id=160465

Patch by Devin Rousso <[email protected]> on 2016-09-06
Reviewed by Brian Burg.

* UserInterface/Views/CodeMirrorOverrides.css:
(.CodeMirror .cm-invalidchar):
Hide all invalid characters.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (205516 => 205517)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-09-06 23:01:53 UTC (rev 205516)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-09-06 23:03:27 UTC (rev 205517)
@@ -1,5 +1,16 @@
 2016-09-06  Devin Rousso  <[email protected]>
 
+        Web Inspector: CodeMirror in resource content view should not show 'CR' characters
+        https://bugs.webkit.org/show_bug.cgi?id=160465
+
+        Reviewed by Brian Burg.
+
+        * UserInterface/Views/CodeMirrorOverrides.css:
+        (.CodeMirror .cm-invalidchar):
+        Hide all invalid characters.
+
+2016-09-06  Devin Rousso  <[email protected]>
+
         Web Inspector: Cannot undo in breakpoint editor
         https://bugs.webkit.org/show_bug.cgi?id=152858
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/CodeMirrorOverrides.css (205516 => 205517)


--- trunk/Source/WebInspectorUI/UserInterface/Views/CodeMirrorOverrides.css	2016-09-06 23:01:53 UTC (rev 205516)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/CodeMirrorOverrides.css	2016-09-06 23:03:27 UTC (rev 205517)
@@ -90,3 +90,8 @@
     color: hsl(0, 0%, 65%);
     text-indent: 0;
 }
+
+/* FIXME: Add setting to show/hide invalid characters. */
+.CodeMirror .cm-invalidchar {
+    display: none;
+}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to