Title: [199533] releases/WebKitGTK/webkit-2.12/Source/WebInspectorUI
Revision
199533
Author
[email protected]
Date
2016-04-14 02:13:25 -0700 (Thu, 14 Apr 2016)

Log Message

Unreviewed. REGRESSION: Web Inspector: Remote inspector doesn't work
https://bugs.webkit.org/show_bug.cgi?id=156543

WebSocket connection is blocked by CSP, but needed by the remote web inspector to work, so allow connect to ws
URLs from the web inspector.

* UserInterface/Main.html:

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.12/Source/WebInspectorUI/ChangeLog (199532 => 199533)


--- releases/WebKitGTK/webkit-2.12/Source/WebInspectorUI/ChangeLog	2016-04-14 07:49:55 UTC (rev 199532)
+++ releases/WebKitGTK/webkit-2.12/Source/WebInspectorUI/ChangeLog	2016-04-14 09:13:25 UTC (rev 199533)
@@ -1,3 +1,13 @@
+2016-04-14  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. REGRESSION: Web Inspector: Remote inspector doesn't work
+        https://bugs.webkit.org/show_bug.cgi?id=156543
+
+        WebSocket connection is blocked by CSP, but needed by the remote web inspector to work, so allow connect to ws
+        URLs from the web inspector.
+
+        * UserInterface/Main.html:
+
 2016-03-17  Carlos Garcia Campos  <[email protected]>
 
         REGRESSION (r197724): [GTK] Web Inspector: Images being blocked by CSP 2.0

Modified: releases/WebKitGTK/webkit-2.12/Source/WebInspectorUI/UserInterface/Main.html (199532 => 199533)


--- releases/WebKitGTK/webkit-2.12/Source/WebInspectorUI/UserInterface/Main.html	2016-04-14 07:49:55 UTC (rev 199532)
+++ releases/WebKitGTK/webkit-2.12/Source/WebInspectorUI/UserInterface/Main.html	2016-04-14 09:13:25 UTC (rev 199533)
@@ -26,7 +26,7 @@
 <html>
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-    <meta http-equiv="Content-Security-Policy" content="default-src 'self'; img-src * file: blob: resource:; connect-src *; media-src * blob:; font-src * blob:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline'">
+    <meta http-equiv="Content-Security-Policy" content="default-src 'self'; img-src * file: blob: resource:; connect-src * ws:; media-src * blob:; font-src * blob:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline'">
 
     <link rel="stylesheet" href=""
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to