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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-conversion-expected.txt

Issue 1827743002: SameSite: Teach devtools about the new 'samesite' syntax. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test 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 CONSOLE WARNING: Synchronous XMLHttpRequest on the main thread is deprecated bec ause of its detrimental effects to the end user's experience. For more help, che ck https://xhr.spec.whatwg.org/. 1 CONSOLE WARNING: Synchronous XMLHttpRequest on the main thread is deprecated bec ause of its detrimental effects to the end user's experience. For more help, che ck https://xhr.spec.whatwg.org/.
2 Tests conversion of Inspector's resource representation into HAR format. 2 Tests conversion of Inspector's resource representation into HAR format.
3 3
4 Page reloaded. 4 Page reloaded.
5 { 5 {
6 creator : { 6 creator : {
7 name : "WebInspector" 7 name : "WebInspector"
8 version : <string> 8 version : <string>
9 } 9 }
10 entries : [ 10 entries : [
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 pageref : "page_1" 52 pageref : "page_1"
53 request : { 53 request : {
54 bodySize : <number> 54 bodySize : <number>
55 cookies : [ 55 cookies : [
56 { 56 {
57 domain : "example.com" 57 domain : "example.com"
58 expires : null 58 expires : null
59 httpOnly : false 59 httpOnly : false
60 name : "a" 60 name : "a"
61 path : "/path" 61 path : "/path"
62 sameSite : undefined
62 secure : false 63 secure : false
63 value : "b" 64 value : "b"
64 } 65 }
65 { 66 {
66 domain : undefined 67 domain : undefined
67 expires : null 68 expires : null
68 httpOnly : false 69 httpOnly : false
69 name : "a1" 70 name : "a1"
70 path : undefined 71 path : undefined
72 sameSite : undefined
71 secure : false 73 secure : false
72 value : "b1" 74 value : "b1"
73 } 75 }
74 { 76 {
75 domain : undefined 77 domain : undefined
76 expires : null 78 expires : null
77 httpOnly : false 79 httpOnly : false
78 name : "c1" 80 name : "c1"
79 path : undefined 81 path : undefined
82 sameSite : undefined
80 secure : false 83 secure : false
81 value : "d1" 84 value : "d1"
82 } 85 }
83 ] 86 ]
84 headers : <object> 87 headers : <object>
85 headersSize : <number> 88 headersSize : <number>
86 httpVersion : "HTTP/1.1" 89 httpVersion : "HTTP/1.1"
87 method : "GET" 90 method : "GET"
88 queryString : [ 91 queryString : [
89 ] 92 ]
90 url : "http://127.0.0.1:8000/inspector/inspector-test.js" 93 url : "http://127.0.0.1:8000/inspector/inspector-test.js"
91 } 94 }
92 response : { 95 response : {
93 _transferSize : <number> 96 _transferSize : <number>
94 bodySize : <number> 97 bodySize : <number>
95 content : { 98 content : {
96 mimeType : "application/x-javascript" 99 mimeType : "application/x-javascript"
97 size : <number> 100 size : <number>
98 } 101 }
99 cookies : [ 102 cookies : [
100 { 103 {
101 domain : "example.com" 104 domain : "example.com"
102 expires : null 105 expires : null
103 httpOnly : true 106 httpOnly : true
104 name : "x" 107 name : "x"
105 path : "/path" 108 path : "/path"
109 sameSite : undefined
106 secure : true 110 secure : true
107 value : "y" 111 value : "y"
108 } 112 }
109 { 113 {
110 domain : undefined 114 domain : undefined
111 expires : null 115 expires : null
112 httpOnly : false 116 httpOnly : false
113 name : "x1" 117 name : "x1"
114 path : undefined 118 path : undefined
119 sameSite : "Strict"
115 secure : false 120 secure : false
116 value : "y1" 121 value : "y1"
117 } 122 }
118 { 123 {
119 domain : undefined 124 domain : undefined
120 expires : null 125 expires : null
121 httpOnly : false 126 httpOnly : false
122 name : "z2" 127 name : "z2"
123 path : undefined 128 path : undefined
129 sameSite : "Lax"
124 secure : false 130 secure : false
125 value : "y2" 131 value : "y2"
126 } 132 }
127 ] 133 ]
128 headers : <object> 134 headers : <object>
129 headersSize : <number> 135 headersSize : <number>
130 httpVersion : "HTTP/1.1" 136 httpVersion : "HTTP/1.1"
131 redirectURL : "" 137 redirectURL : ""
132 status : 304 138 status : 304
133 statusText : "Not Modified" 139 statusText : "Not Modified"
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 onContentLoad : <number> 229 onContentLoad : <number>
224 onLoad : <number> 230 onLoad : <number>
225 } 231 }
226 startedDateTime : <plausible> 232 startedDateTime : <plausible>
227 title : "http://127.0.0.1:8000/inspector/resource-har-conversion.htm l" 233 title : "http://127.0.0.1:8000/inspector/resource-har-conversion.htm l"
228 } 234 }
229 ] 235 ]
230 version : <string> 236 version : <string>
231 } 237 }
232 238
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698