Title: [227036] branches/safari-605-branch/Source/WebInspectorUI
Revision
227036
Author
[email protected]
Date
2018-01-16 21:04:49 -0800 (Tue, 16 Jan 2018)

Log Message

Cherry-pick r226992. rdar://problem/36568053

Modified Paths

Diff

Modified: branches/safari-605-branch/Source/WebInspectorUI/ChangeLog (227035 => 227036)


--- branches/safari-605-branch/Source/WebInspectorUI/ChangeLog	2018-01-17 05:04:46 UTC (rev 227035)
+++ branches/safari-605-branch/Source/WebInspectorUI/ChangeLog	2018-01-17 05:04:49 UTC (rev 227036)
@@ -1,5 +1,21 @@
 2018-01-16  Jason Marcell  <[email protected]>
 
+        Cherry-pick r226992. rdar://problem/36568053
+
+    2018-01-16  Joseph Pecoraro  <[email protected]>
+
+            Web Inspector: Network Tab - Export HAR Context Menu not working
+            https://bugs.webkit.org/show_bug.cgi?id=181694
+            <rdar://problem/36479197>
+
+            Reviewed by Brian Burg.
+
+            * UserInterface/Views/NetworkTableContentView.js:
+            (WI.NetworkTableContentView.prototype.tableCellContextMenuClicked):
+            Ensure `this` works in the handler.
+
+2018-01-16  Jason Marcell  <[email protected]>
+
         Cherry-pick r226821. rdar://problem/36568038
 
     2018-01-11  Joseph Pecoraro  <[email protected]>

Modified: branches/safari-605-branch/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.js (227035 => 227036)


--- branches/safari-605-branch/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.js	2018-01-17 05:04:46 UTC (rev 227035)
+++ branches/safari-605-branch/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.js	2018-01-17 05:04:49 UTC (rev 227036)
@@ -344,7 +344,7 @@
         WI.appendContextMenuItemsForSourceCode(contextMenu, entry.resource);
 
         contextMenu.appendSeparator();
-        contextMenu.appendItem(WI.UIString("Export HAR"), this._exportHAR);
+        contextMenu.appendItem(WI.UIString("Export HAR"), () => { this._exportHAR(); });
     }
 
     tableSelectedRowChanged(table, rowIndex)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to