1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 09:07:44 +00:00

Browser: Process Expires cookie attribute

This commit is contained in:
Timothy Flynn 2021-04-12 11:38:48 -04:00 committed by Andreas Kling
parent 2370efbea6
commit cab2e2dded
2 changed files with 116 additions and 1 deletions

View file

@ -61,6 +61,7 @@ private:
static void on_path_attribute(Cookie& cookie, StringView attribute_value);
static void on_secure_attribute(Cookie& cookie);
static void on_http_only_attribute(Cookie& cookie);
static Optional<Core::DateTime> parse_date_time(StringView date_string);
HashMap<String, Vector<Cookie>> m_cookies;
};