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

Side by Side 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 unified diff | Download patch
OLDNEW
1 Tests that resources panel shows form data parameters. 1 Tests that resources panel shows form data parameters.
2 2
3 3
4 4
5 http://127.0.0.1:8000/inspector/resources/post-target.cgi?queryParam1=queryValue 1&queryParam2=
5 { 6 {
6 cache : { 7 cache : {
7 } 8 }
8 connection : <string> 9 connection : <string>
9 request : { 10 request : {
10 bodySize : <number> 11 bodySize : <number>
11 cookies : [ 12 cookies : [
12 ] 13 ]
13 headers : <object> 14 headers : <object>
14 headersSize : <number> 15 headersSize : <number>
(...skipping 16 matching lines...) Expand all
31 queryString : [ 32 queryString : [
32 { 33 {
33 name : "queryParam1" 34 name : "queryParam1"
34 value : "queryValue1" 35 value : "queryValue1"
35 } 36 }
36 { 37 {
37 name : "queryParam2" 38 name : "queryParam2"
38 value : "" 39 value : ""
39 } 40 }
40 ] 41 ]
41 url : "http://localhost:8000/inspector/resources/post-target.cgi?queryPa ram1=queryValue1&queryParam2=" 42 url : "http://127.0.0.1:8000/inspector/resources/post-target.cgi?queryPa ram1=queryValue1&queryParam2="
42 } 43 }
43 response : { 44 response : {
44 _transferSize : <number> 45 _transferSize : <number>
45 bodySize : <number> 46 bodySize : <number>
46 content : { 47 content : {
47 compression : <number> 48 compression : <number>
48 mimeType : "application/xml" 49 mimeType : "application/xml"
49 size : 14 50 size : 14
50 } 51 }
51 cookies : [ 52 cookies : [
52 ] 53 ]
53 headers : <object> 54 headers : <object>
54 headersSize : <number> 55 headersSize : <number>
55 httpVersion : "HTTP/1.1" 56 httpVersion : "HTTP/1.1"
56 redirectURL : "" 57 redirectURL : ""
57 status : 200 58 status : 200
58 statusText : "OK" 59 statusText : "OK"
59 } 60 }
60 serverIPAddress : "127.0.0.1" 61 serverIPAddress : "127.0.0.1"
61 startedDateTime : <plausible> 62 startedDateTime : <plausible>
62 time : <number> 63 time : <number>
63 timings : <object> 64 timings : <object>
64 } 65 }
65 66 http://[::1]:8000/inspector/resources/post-target.cgi?queryParam1=queryValue1&qu eryParam2=
67 {
68 cache : {
69 }
70 connection : <string>
71 request : {
72 bodySize : <number>
73 cookies : [
74 ]
75 headers : <object>
76 headersSize : <number>
77 httpVersion : "HTTP/1.1"
78 method : "POST"
79 postData : {
80 mimeType : "application/x-www-form-urlencoded"
81 params : [
82 {
83 name : "formParam1"
84 value : "formValue1"
85 }
86 {
87 name : "formParam2"
88 value : ""
89 }
90 ]
91 text : "formParam1=formValue1&formParam2="
92 }
93 queryString : [
94 {
95 name : "queryParam1"
96 value : "queryValue1"
97 }
98 {
99 name : "queryParam2"
100 value : ""
101 }
102 ]
103 url : "http://[::1]:8000/inspector/resources/post-target.cgi?queryParam1 =queryValue1&queryParam2="
104 }
105 response : {
106 _transferSize : <number>
107 bodySize : <number>
108 content : {
109 compression : <number>
110 mimeType : "application/xml"
111 size : 14
112 }
113 cookies : [
114 ]
115 headers : <object>
116 headersSize : <number>
117 httpVersion : "HTTP/1.1"
118 redirectURL : ""
119 status : 200
120 statusText : "OK"
121 }
122 serverIPAddress : "[::1]"
123 startedDateTime : <plausible>
124 time : <number>
125 timings : <object>
126 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698