diff options
author | Smrtnyk <milankeser@outlook.de> | 2022-10-21 13:02:10 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-22 18:17:01 +0200 |
commit | ae950816b572b173901451f2ea3292dcac341b73 (patch) | |
tree | 4a1781ca7cb99cd1683c1129835b8c0f2ee433a2 /Base/res | |
parent | cb480fa3dc4f88a222732c04ee6ff96899a38555 (diff) | |
download | serenity-ae950816b572b173901451f2ea3292dcac341b73.zip |
Base: Add SameSite cookie test cases
Diffstat (limited to 'Base/res')
-rw-r--r-- | Base/res/html/misc/cookie.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Base/res/html/misc/cookie.html b/Base/res/html/misc/cookie.html index 23359e32ac..c3b8df92a9 100644 --- a/Base/res/html/misc/cookie.html +++ b/Base/res/html/misc/cookie.html @@ -3,6 +3,9 @@ <br /><input type=button onclick="setCookie(this.value)" value="cookie1=value1; max-age=5; path=/res/html" /> <br /><input type=button onclick="setCookie(this.value)" value="cookie2=value2; expires=Sat, 23 Jan 2060 08:10:36 GMT" /> <br /><input type=button onclick="setCookie(this.value)" value="cookie3=value3" /> + <br /><input type=button onclick="setCookie(this.value)" value="cookie4=value4;SameSite=Lax" /> + <br /><input type=button onclick="setCookie(this.value)" value="cookie5=value5;SameSite=Strict" /> + <br /><input type=button onclick="setCookie(this.value)" value="cookie6=value6;SameSite=None" /> <br /> <h3>Invalid cookies (the browser should reject these):</h3> |