Hello Webkit, If I set cookie with 'expires' option set to 7 days from now, 'SameSite' option appears to be set as 'Strict'. document.cookie = "test1=value;expires="+new Date(Date.now() + (7 * 24 * 60 * 60 * 1000)).toGMTString()+';secure;SameSite=Strict;'; If I set 'expires' option to something far from 7 days limit, 'SameSite' option appears as '---', despite it's being provided. document.cookie = "test2=value;expires="+new Date(Date.now() + (365 * 24 * 60 * 60 * 1000)).toGMTString()+';secure;SameSite=Strict;'; Thank you, Alexander
<rdar://problem/63603775>
The fix for this issue was needed outside the WebKit project, therefore this is being resolved as 'Moved'. The fixed component is shipping in all current releases.