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:
Andreas Kling 2021-03-14 16:35:28 +01:00
commit 36ea9fbd9e
Notes: sideshowbarker 2024-07-18 21:19:57 +09:00
3 changed files with 16 additions and 0 deletions

View file

@ -11,6 +11,8 @@ interface Document : Node {
readonly attribute Window? defaultView;
attribute DOMString cookie;
Element? getElementById(DOMString id);
ArrayFromVector getElementsByName(DOMString name);
ArrayFromVector getElementsByTagName(DOMString tagName);