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

Unified Diff: third_party/WebKit/LayoutTests/platform/linux/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/platform/linux/http/tests/inspector/resource-parameters-expected.txt
diff --git a/third_party/WebKit/LayoutTests/platform/linux/http/tests/inspector/resource-parameters-expected.txt b/third_party/WebKit/LayoutTests/platform/linux/http/tests/inspector/resource-parameters-expected.txt
index 1d09e28145bacffffd215a8a37de1fa3e64a8d37..564dbf3b7d611e1b1e89c84fc068e3013854227d 100644
--- a/third_party/WebKit/LayoutTests/platform/linux/http/tests/inspector/resource-parameters-expected.txt
+++ b/third_party/WebKit/LayoutTests/platform/linux/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 : {
}
@@ -62,4 +63,65 @@ 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