1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:17:45 +00:00

LibWeb: Implement document.open(string, string, string)

This commit is contained in:
Idan Horowitz 2022-11-15 02:30:15 +02:00 committed by Linus Groh
parent a63c7549e1
commit 43c5b94ea6
3 changed files with 14 additions and 2 deletions

View file

@ -43,8 +43,7 @@ interface Document : Node {
readonly attribute Window? defaultView;
[CEReactions] Document open(optional DOMString unused1, optional DOMString unused2);
// FIXME: implement ExceptionOr<HTML::Window> Document::open(...)
// WindowProxy? open(USVString url, DOMString name, DOMString features);
WindowProxy? open(USVString url, DOMString name, DOMString features);
[CEReactions] undefined close();
[CEReactions] undefined write(DOMString... text);
[CEReactions] undefined writeln(DOMString... text);