Title: [151574] trunk/Source/WebInspectorUI
Revision
151574
Author
[email protected]
Date
2013-06-13 16:54:25 -0700 (Thu, 13 Jun 2013)

Log Message

<http://webkit.org/b/117615> Web Inspector: JS PrettyPrinting Should have space between "do" and "{"

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

* UserInterface/CodeMirrorFormatters.js:

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (151573 => 151574)


--- trunk/Source/WebInspectorUI/ChangeLog	2013-06-13 23:33:08 UTC (rev 151573)
+++ trunk/Source/WebInspectorUI/ChangeLog	2013-06-13 23:54:25 UTC (rev 151574)
@@ -1,5 +1,13 @@
 2013-06-13  Joseph Pecoraro  <[email protected]>
 
+        <http://webkit.org/b/117615> Web Inspector: JS PrettyPrinting Should have space between "do" and "{"
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/CodeMirrorFormatters.js:
+
+2013-06-13  Joseph Pecoraro  <[email protected]>
+
         <http://webkit.org/b/117612> Web Inspector: "Search Resource Content" should cancel when I remove all text search text
 
         Reviewed by Timothy Hatcher.

Modified: trunk/Source/WebInspectorUI/UserInterface/CodeMirrorFormatters.js (151573 => 151574)


--- trunk/Source/WebInspectorUI/UserInterface/CodeMirrorFormatters.js	2013-06-13 23:33:08 UTC (rev 151573)
+++ trunk/Source/WebInspectorUI/UserInterface/CodeMirrorFormatters.js	2013-06-13 23:54:25 UTC (rev 151574)
@@ -67,6 +67,8 @@
                 return true;
             if (lastContent === "finally")
                 return true;
+            if (lastContent === "do")
+                return true;
             return false;
         }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to