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

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

Issue 1812613003: [DevTools] Fix to double wrapping IPv6 in square brackets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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-expected.txt
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters-expected.txt b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters-expected.txt
index 0b7761a38008bf66ae8903d6feed93c49cb7c1f7..552fb074e4b40d85a43fb9a44c4faae792604725 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters-expected.txt
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters-expected.txt
@@ -2,6 +2,7 @@ Tests that resources panel shows form data parameters.
+http://127.0.0.1:8000/inspector/resources/post-target.cgi?queryParam1=queryValue1&queryParam2=
{
cache : {
}
@@ -38,7 +39,7 @@ Tests that resources panel shows form data parameters.
value : ""
}
]
- url : "http://localhost:8000/inspector/resources/post-target.cgi?queryParam1=queryValue1&queryParam2="
+ url : "http://127.0.0.1:8000/inspector/resources/post-target.cgi?queryParam1=queryValue1&queryParam2="
}
response : {
_transferSize : <number>
@@ -62,4 +63,64 @@ Tests that resources panel shows form data parameters.
time : <number>
timings : <object>
}
-
+http://[::1]:8000/inspector/resources/post-target.cgi?queryParam1=queryValue1&queryParam2=
+{
+ cache : {
+ }
+ connection : <string>
+ request : {
+ bodySize : <number>
+ cookies : [
+ ]
+ headers : <object>
+ headersSize : <number>
+ httpVersion : "HTTP/1.1"
+ method : "POST"
+ postData : {
+ mimeType : "application/x-www-form-urlencoded"
+ params : [
+ {
+ name : "formParam1"
+ value : "formValue1"
+ }
+ {
+ name : "formParam2"
+ value : ""
+ }
+ ]
+ text : "formParam1=formValue1&formParam2="
+ }
+ queryString : [
+ {
+ name : "queryParam1"
+ value : "queryValue1"
+ }
+ {
+ name : "queryParam2"
+ value : ""
+ }
+ ]
+ url : "http://[::1]:8000/inspector/resources/post-target.cgi?queryParam1=queryValue1&queryParam2="
+ }
+ response : {
+ _transferSize : <number>
+ bodySize : <number>
+ content : {
+ compression : <number>
+ mimeType : "application/xml"
+ size : 14
+ }
+ cookies : [
+ ]
+ headers : <object>
+ headersSize : <number>
+ httpVersion : "HTTP/1.1"
+ redirectURL : ""
+ status : 200
+ statusText : "OK"
+ }
+ serverIPAddress : "[::1]"
+ startedDateTime : <plausible>
+ time : <number>
+ timings : <object>
+}

Powered by Google App Engine
This is Rietveld 408576698