| Index: third_party/WebKit/Source/devtools/front_end/sdk/HAREntry.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/HAREntry.js b/third_party/WebKit/Source/devtools/front_end/sdk/HAREntry.js
|
| index ec7d526f14b70bc55d48c73486b99a21d26f47cd..5219b8998c90b404a472dee6a66a5605ca3ac4a9 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/HAREntry.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/HAREntry.js
|
| @@ -220,7 +220,7 @@ WebInspector.HAREntry.prototype = {
|
| */
|
| _buildCookie: function(cookie)
|
| {
|
| - return {
|
| + var c = {
|
| name: cookie.name(),
|
| value: cookie.value(),
|
| path: cookie.path(),
|
| @@ -229,6 +229,9 @@ WebInspector.HAREntry.prototype = {
|
| httpOnly: cookie.httpOnly(),
|
| secure: cookie.secure()
|
| };
|
| + if (cookie.sameSite())
|
| + c.sameSite = cookie.sameSite();
|
| + return c;
|
| },
|
|
|
| /**
|
|
|