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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters.html

Issue 1798173003: [DevTools] Added serverIPaddress to HAR output (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a couple files that were wrong Created 4 years, 9 months 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/http/tests/inspector/resource-parameters.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters.html b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters.html
index fefbabe1fe28f87c3e048d990686fd322018be0b..256b66b076614f2a2a1633ccff41438a3766f19f 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters.html
@@ -17,7 +17,7 @@ function test()
function onRequestFinished(event)
{
var request = event.data;
- if (request.url !== "http://localhost:8000/inspector/resources/post-target.cgi?queryParam1=queryValue1&queryParam2=")
+ if (request.url !== "http://127.0.0.1:8000/inspector/resources/post-target.cgi?queryParam1=queryValue1&queryParam2=")
return;
InspectorTest.addObject(new WebInspector.HAREntry(request).build(), InspectorTest.HARPropertyFormatters);
InspectorTest.completeTest();
@@ -30,7 +30,7 @@ function test()
<p>
Tests that resources panel shows form data parameters.
</p>
-<form target="target-iframe" method="POST" action="http://localhost:8000/inspector/resources/post-target.cgi?queryParam1=queryValue1&queryParam2=#fragmentParam1=fragmentValue1&fragmentParam2=">
+<form target="target-iframe" method="POST" action="http://127.0.0.1:8000/inspector/resources/post-target.cgi?queryParam1=queryValue1&queryParam2=#fragmentParam1=fragmentValue1&fragmentParam2=">
<input name="formParam1" value="formValue1">
<input name="formParam2">
<input id="submit" type="submit">

Powered by Google App Engine
This is Rietveld 408576698