mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:37:35 +00:00
LibWeb: Stub out Document.cookie
We don't get/set anything, but at least scripts that access document cookies can now progress further. :^)
This commit is contained in:
parent
3596c42deb
commit
36ea9fbd9e
3 changed files with 16 additions and 0 deletions
|
@ -73,6 +73,9 @@ public:
|
|||
|
||||
virtual ~Document() override;
|
||||
|
||||
String cookie() const;
|
||||
void set_cookie(String);
|
||||
|
||||
bool should_invalidate_styles_on_attribute_changes() const { return m_should_invalidate_styles_on_attribute_changes; }
|
||||
void set_should_invalidate_styles_on_attribute_changes(bool b) { m_should_invalidate_styles_on_attribute_changes = b; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue