diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-04-13 17:35:26 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-14 16:07:46 +0200 |
commit | 858ba11aef63e7346339aa99412747e2e1dcd7b4 (patch) | |
tree | 9cec66d3d51cf15698756d7f7d3d3c7854cdd8a3 /Base/res | |
parent | c00760c5f9ca72b89b39feb7042978da2f15eef3 (diff) | |
download | serenity-858ba11aef63e7346339aa99412747e2e1dcd7b4.zip |
Browser: Respect the HttpOnly flag when storing cookies
Diffstat (limited to 'Base/res')
-rw-r--r-- | Base/res/html/misc/cookie.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/res/html/misc/cookie.html b/Base/res/html/misc/cookie.html index e44c861199..8bbbfb3af9 100644 --- a/Base/res/html/misc/cookie.html +++ b/Base/res/html/misc/cookie.html @@ -9,7 +9,7 @@ <br /><input id=invalid1 type=button onclick="setCookie(this.value)" value="cookie4=value4; domain=serenityos.org" /> <label for=invalid1>The Domain attribute does not domain-match this page</label> <br /><input id=invalid2 type=button onclick="setCookie(this.value)" value="cookie5=value5; httponly" /> - <label for=invalid2>The cookie is HttpOnly thus cannot be set via JavaScript (*not yet implemented*)</label> + <label for=invalid2>The cookie is HttpOnly thus cannot be set via JavaScript</label> <br /><input id=invalid3 type=button onclick="setCookie(this.value)" value="cookie6=value6; max-age=-1" /> <label for=invalid3>The cookie expired in the past</label> <br /><input id=invalid4 type=button onclick="setCookie(this.value)" value="cookie7=value7; expires=Mon, 23 Jan 1989 08:10:36 GMT" /> |