mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:37:35 +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:
parent
ec4980e875
commit
c1dfb2d883
95 changed files with 98 additions and 95 deletions
|
@ -6,4 +6,4 @@ interface CharacterData : Node {
|
|||
readonly attribute Element? nextElementSibling;
|
||||
readonly attribute Element? previousElementSibling;
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
interface Comment : CharacterData {
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
@ -4,4 +4,4 @@ interface DOMImplementation {
|
|||
|
||||
boolean hasFeature();
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
@ -34,4 +34,4 @@ interface Document : Node {
|
|||
|
||||
attribute DOMString title;
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
@ -8,4 +8,4 @@ interface DocumentFragment : Node {
|
|||
Element? querySelector(DOMString selectors);
|
||||
ArrayFromVector querySelectorAll(DOMString selectors);
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
@ -4,4 +4,4 @@ interface DocumentType : Node {
|
|||
readonly attribute DOMString publicId;
|
||||
readonly attribute DOMString systemId;
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
@ -17,4 +17,4 @@ interface Element : Node {
|
|||
|
||||
readonly attribute Element? nextElementSibling;
|
||||
readonly attribute Element? previousElementSibling;
|
||||
}
|
||||
};
|
||||
|
|
|
@ -20,4 +20,4 @@ interface Event {
|
|||
|
||||
readonly attribute boolean isTrusted;
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
@ -3,4 +3,4 @@ interface EventTarget {
|
|||
void addEventListener(DOMString type, EventListener? callback);
|
||||
void removeEventListener(DOMString type, EventListener? callback);
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
@ -12,5 +12,5 @@ interface Node : EventTarget {
|
|||
Node appendChild(Node node);
|
||||
Node insertBefore(Node node, Node? child);
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -3,4 +3,4 @@ interface ShadowRoot : DocumentFragment {
|
|||
readonly attribute DOMString mode;
|
||||
readonly attribute Element host;
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
interface Text : CharacterData {
|
||||
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue