1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

LibWeb: Add constructor to Document IDL interface

This commit is contained in:
Linus Groh 2021-02-17 22:52:21 +01:00 committed by Andreas Kling
parent 8c7d1986b8
commit 0f1da7d40c
2 changed files with 12 additions and 1 deletions

View file

@ -36,6 +36,7 @@
#include <LibCore/Forward.h>
#include <LibJS/Forward.h>
#include <LibWeb/Bindings/ScriptExecutionContext.h>
#include <LibWeb/Bindings/WindowObject.h>
#include <LibWeb/CSS/StyleResolver.h>
#include <LibWeb/CSS/StyleSheet.h>
#include <LibWeb/CSS/StyleSheetList.h>
@ -60,7 +61,15 @@ class Document
public:
using WrapperType = Bindings::DocumentWrapper;
static NonnullRefPtr<Document> create(const URL& url = "about:blank") { return adopt(*new Document(url)); }
static NonnullRefPtr<Document> create(const URL& url = "about:blank")
{
return adopt(*new Document(url));
}
static NonnullRefPtr<Document> create_with_global_object(Bindings::WindowObject&)
{
return Document::create();
}
virtual ~Document() override;
bool should_invalidate_styles_on_attribute_changes() const { return m_should_invalidate_styles_on_attribute_changes; }

View file

@ -1,5 +1,7 @@
interface Document : Node {
constructor();
readonly attribute DOMImplementation implementation;
readonly attribute DOMString characterSet;