From 79fdc08de942a0b2a2f68b31293c4662e1bc23a0 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Wed, 27 Jul 2022 19:51:06 +0100 Subject: [PATCH] LibWeb: Correct typo in Document.idl Makes me wonder how things were working when Document was never including GlobalEventHandlers. --- Userland/Libraries/LibWeb/DOM/Document.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/DOM/Document.idl b/Userland/Libraries/LibWeb/DOM/Document.idl index be711618b8..f5dd1cdf61 100644 --- a/Userland/Libraries/LibWeb/DOM/Document.idl +++ b/Userland/Libraries/LibWeb/DOM/Document.idl @@ -114,4 +114,4 @@ interface Document : Node { }; -HTMLElement includes GlobalEventHandlers; +Document includes GlobalEventHandlers;