1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 03:08:13 +00:00

LibWeb: Expect IDL namespace to end with semicolon

From the Web IDL spec: https://heycam.github.io/webidl/#prod-Namespace

Namespace ::
    namespace identifier { NamespaceMembers } ;
This commit is contained in:
Linus Groh 2020-12-09 21:26:42 +00:00 committed by Andreas Kling
parent ec4980e875
commit c1dfb2d883
95 changed files with 98 additions and 95 deletions

View file

@ -1,3 +1,3 @@
interface SVGElement : Element {
}
};

View file

@ -1,3 +1,3 @@
interface SVGGeometryElement : SVGGraphicsElement {
}
};

View file

@ -1,3 +1,3 @@
interface SVGGraphicsElement : SVGElement {
}
};

View file

@ -1,3 +1,3 @@
interface SVGPathElement : SVGGeometryElement {
}
};

View file

@ -1,3 +1,3 @@
interface SVGSVGElement : SVGGraphicsElement {
}
};