summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/UIEvents
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2020-12-09 21:26:42 +0000
committerAndreas Kling <kling@serenityos.org>2020-12-10 11:02:46 +0100
commitc1dfb2d8837bf1a492deab321136eee07cb26e00 (patch)
tree44eca70fbd74c2e2129da9d57474d9b464e04cf1 /Libraries/LibWeb/UIEvents
parentec4980e87561f1ad3132d525c579c139f2399098 (diff)
downloadserenity-c1dfb2d8837bf1a492deab321136eee07cb26e00.zip
LibWeb: Expect IDL namespace to end with semicolon
From the Web IDL spec: https://heycam.github.io/webidl/#prod-Namespace Namespace :: namespace identifier { NamespaceMembers } ;
Diffstat (limited to 'Libraries/LibWeb/UIEvents')
-rw-r--r--Libraries/LibWeb/UIEvents/MouseEvent.idl2
-rw-r--r--Libraries/LibWeb/UIEvents/UIEvent.idl2
2 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibWeb/UIEvents/MouseEvent.idl b/Libraries/LibWeb/UIEvents/MouseEvent.idl
index 4cecda9462..2751f2353a 100644
--- a/Libraries/LibWeb/UIEvents/MouseEvent.idl
+++ b/Libraries/LibWeb/UIEvents/MouseEvent.idl
@@ -3,4 +3,4 @@ interface MouseEvent : Event {
readonly attribute double offsetX;
readonly attribute double offsetY;
-}
+};
diff --git a/Libraries/LibWeb/UIEvents/UIEvent.idl b/Libraries/LibWeb/UIEvents/UIEvent.idl
index 641b96d650..f885f4669a 100644
--- a/Libraries/LibWeb/UIEvents/UIEvent.idl
+++ b/Libraries/LibWeb/UIEvents/UIEvent.idl
@@ -1,3 +1,3 @@
interface UIEvent : Event {
-}
+};