Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: third_party/WebKit/LayoutTests/inspector/curl-command.html

Issue 2523633003: [Devtools] Prepare network log view for grouping support (Closed)
Patch Set: fixed request === null and possible filter out issue Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/curl-command.html
diff --git a/third_party/WebKit/LayoutTests/inspector/curl-command.html b/third_party/WebKit/LayoutTests/inspector/curl-command.html
index 4be83f10ceee8d9cf08311d5be51f281ad9c6809..f0bb0c593fa5db75c141b9a9a9bccee809aa8758 100644
--- a/third_party/WebKit/LayoutTests/inspector/curl-command.html
+++ b/third_party/WebKit/LayoutTests/inspector/curl-command.html
@@ -27,8 +27,8 @@ var test = function()
function dumpRequest(headers, data, opt_url)
{
- InspectorTest.addResult("Windows: " + logView._generateCurlCommand(newRequest(headers, data, opt_url), "win"));
- InspectorTest.addResult("Unix: " + logView._generateCurlCommand(newRequest(headers, data, opt_url), "unix"));
+ InspectorTest.addResult("Windows: " + logView._generateCurlCommand("win", newRequest(headers, data, opt_url)));
+ InspectorTest.addResult("Unix: " + logView._generateCurlCommand("unix", newRequest(headers, data, opt_url)));
}
dumpRequest({})
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698