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

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

Issue 2523633003: [Devtools] Prepare network log view for grouping support (Closed)
Patch Set: changes Created 4 years, 1 month 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
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({})

Powered by Google App Engine
This is Rietveld 408576698