mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:08:12 +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
|
@ -696,4 +696,15 @@ void Document::completely_finish_loading()
|
|||
dispatch_event(DOM::Event::create(HTML::EventNames::load));
|
||||
}
|
||||
|
||||
String Document::cookie() const
|
||||
{
|
||||
// FIXME: Support cookies!
|
||||
return {};
|
||||
}
|
||||
|
||||
void Document::set_cookie(String)
|
||||
{
|
||||
// FIXME: Support cookies!
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue