Title: [210383] branches/safari-603-branch/Source/WebInspectorUI
Revision
210383
Author
matthew_han...@apple.com
Date
2017-01-05 15:49:12 -0800 (Thu, 05 Jan 2017)

Log Message

Merge r210252. rdar://problem/29854762

Modified Paths

Diff

Modified: branches/safari-603-branch/Source/WebInspectorUI/ChangeLog (210382 => 210383)


--- branches/safari-603-branch/Source/WebInspectorUI/ChangeLog	2017-01-05 23:49:10 UTC (rev 210382)
+++ branches/safari-603-branch/Source/WebInspectorUI/ChangeLog	2017-01-05 23:49:12 UTC (rev 210383)
@@ -1,5 +1,21 @@
 2017-01-05  Matthew Hanson  <matthew_han...@apple.com>
 
+        Merge r210252. rdar://problem/29854762
+
+    2017-01-03  Joseph Pecoraro  <pecor...@apple.com>
+
+            Web Inspector: "Invalid Characters" setting does the opposite of the checkbox
+            https://bugs.webkit.org/show_bug.cgi?id=166664
+
+            Reviewed by Brian Burg.
+
+            * UserInterface/Views/CodeMirrorOverrides.css:
+            (.CodeMirror .cm-invalidchar):
+            (.show-invalid-characters .CodeMirror .cm-invalidchar):
+            Hide invalid characters by default, and show them with the show class.
+
+2017-01-05  Matthew Hanson  <matthew_han...@apple.com>
+
         Merge r210046. rdar://problem/27553228
 
     2016-12-20  Matt Baker  <mattba...@apple.com>

Modified: branches/safari-603-branch/Source/WebInspectorUI/UserInterface/Views/CodeMirrorOverrides.css (210382 => 210383)


--- branches/safari-603-branch/Source/WebInspectorUI/UserInterface/Views/CodeMirrorOverrides.css	2017-01-05 23:49:10 UTC (rev 210382)
+++ branches/safari-603-branch/Source/WebInspectorUI/UserInterface/Views/CodeMirrorOverrides.css	2017-01-05 23:49:12 UTC (rev 210383)
@@ -95,6 +95,10 @@
     position: relative;
 }
 
+.CodeMirror .cm-invalidchar {
+    display: none;
+}
+
 .show-whitespace-characters .CodeMirror .cm-tab::before {
     position: absolute;
     width: 90%;
@@ -175,5 +179,5 @@
 }
 
 .show-invalid-characters .CodeMirror .cm-invalidchar {
-    display: none;
+    display: initial;
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to