Skip to content

Commit

Permalink
Parser: handle another attribute exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Parnassius committed Jan 1, 2024
1 parent ab557c0 commit 430b7c0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions spec_parser/spec_parser/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ def _get_attributes(self) -> None:
"shadowrootdelegatesfocus",
):
pass
elif (
element.string == "body" and attribute == "onpagereveal"
):
pass
elif element.string == "bdo" and attribute == "dir":
# Global attribute with different semantics
pass
Expand Down

0 comments on commit 430b7c0

Please sign in to comment.