Title: [223068] trunk/Source/WebInspectorUI
Revision
223068
Author
[email protected]
Date
2017-10-09 13:57:57 -0700 (Mon, 09 Oct 2017)

Log Message

Unreviewed, minified WebInspector opens blank.
<rdar://problem/34892307>

* UserInterface/Views/ResourceHeadersContentView.js:
(WI.ResourceHeadersContentView.prototype._refreshRequestHeadersSection):
Regression introduced in r223006. The minified build has a SyntaxError
causing WebInspector top open blank. Add the missing semicolon.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (223067 => 223068)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-10-09 20:46:07 UTC (rev 223067)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-10-09 20:57:57 UTC (rev 223068)
@@ -1,5 +1,15 @@
 2017-10-09  Joseph Pecoraro  <[email protected]>
 
+        Unreviewed, minified WebInspector opens blank.
+        <rdar://problem/34892307>
+
+        * UserInterface/Views/ResourceHeadersContentView.js:
+        (WI.ResourceHeadersContentView.prototype._refreshRequestHeadersSection):
+        Regression introduced in r223006. The minified build has a SyntaxError
+        causing WebInspector top open blank. Add the missing semicolon.
+
+2017-10-09  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: Network Tab - Filter resources based on URL / Text Content
         https://bugs.webkit.org/show_bug.cgi?id=178071
         <rdar://problem/34071562>

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ResourceHeadersContentView.js (223067 => 223068)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ResourceHeadersContentView.js	2017-10-09 20:46:07 UTC (rev 223067)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ResourceHeadersContentView.js	2017-10-09 20:57:57 UTC (rev 223068)
@@ -296,7 +296,7 @@
         if (protocol.startsWith("http/1")) {
             // HTTP/1.1 request line:
             // https://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1
-            let requestLine = `${this._resource.requestMethod} ${urlComponents.path} ${protocol.toUpperCase()}`
+            let requestLine = `${this._resource.requestMethod} ${urlComponents.path} ${protocol.toUpperCase()}`;
             this._appendKeyValuePair(detailsElement, requestLine, null, "h1-status");
         } else if (protocol === "h2") {
             // HTTP/2 Request pseudo headers:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to