| Index: third_party/WebKit/Source/devtools/front_end/components_lazy/CookiesTable.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/components_lazy/CookiesTable.js b/third_party/WebKit/Source/devtools/front_end/components_lazy/CookiesTable.js
|
| index 60d5a6c311ece45fdb1e5bc5075ed4f1efcf062a..501958ac0b35ba85d4097ba2a212968fcdfb983e 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components_lazy/CookiesTable.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components_lazy/CookiesTable.js
|
| @@ -51,7 +51,7 @@ WebInspector.CookiesTable = function(expandable, refreshCallback, selectedCallba
|
| {id: "size", title: WebInspector.UIString("Size"), sortable: true, align: WebInspector.DataGrid.Align.Right, weight: 7},
|
| {id: "httpOnly", title: WebInspector.UIString("HTTP"), sortable: true, align: WebInspector.DataGrid.Align.Center, weight: 7},
|
| {id: "secure", title: WebInspector.UIString("Secure"), sortable: true, align: WebInspector.DataGrid.Align.Center, weight: 7},
|
| - {id: "sameSite", title: WebInspector.UIString("Same-Site"), sortable: true, align: WebInspector.DataGrid.Align.Center, weight: 7}
|
| + {id: "sameSite", title: WebInspector.UIString("SameSite"), sortable: true, align: WebInspector.DataGrid.Align.Center, weight: 7}
|
| ];
|
|
|
| if (readOnly)
|
| @@ -261,7 +261,7 @@ WebInspector.CookiesTable.prototype = {
|
| const checkmark = "\u2713";
|
| data.httpOnly = (cookie.httpOnly() ? checkmark : "");
|
| data.secure = (cookie.secure() ? checkmark : "");
|
| - data.sameSite = (cookie.sameSite() ? checkmark : "");
|
| + data.sameSite = cookie.sameSite() || "";
|
|
|
| var node = new WebInspector.DataGridNode(data);
|
| node.cookie = cookie;
|
|
|