| 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">
|
|
|