mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 07:17:34 +00:00
IDL: Fix syntax errors
All attributes must have an "attribute" keyword, and "any?" is invalid (as "any" includes "null" as well).
This commit is contained in:
parent
26e6c47d0a
commit
3ff481938e
3 changed files with 4 additions and 4 deletions
|
@ -106,8 +106,8 @@ interface Document : Node {
|
|||
[CEReactions] attribute DOMString title;
|
||||
|
||||
boolean queryCommandSupported(DOMString commandId);
|
||||
readonly boolean hidden;
|
||||
readonly DOMString visibilityState;
|
||||
readonly attribute boolean hidden;
|
||||
readonly attribute DOMString visibilityState;
|
||||
|
||||
[NewObject] NodeIterator createNodeIterator(Node root, optional unsigned long whatToShow = 0xFFFFFFFF, optional NodeFilter? filter = null);
|
||||
[NewObject] TreeWalker createTreeWalker(Node root, optional unsigned long whatToShow = 0xFFFFFFFF, optional NodeFilter? filter = null);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue