LibWeb: Don't include DOM/Attr.h from DOM/Element.h

This required moving Element::for_each_attribute() out of line, but that
seems harmless enough.
This commit is contained in:
Andreas Kling 2023-05-08 06:49:38 +02:00 committed by Jelle Raaijmakers
commit 5b5fbecb38
Notes: sideshowbarker 2024-07-17 07:48:42 +09:00
5 changed files with 13 additions and 9 deletions

View file

@ -14,6 +14,7 @@
#include <LibRegex/Regex.h>
#include <LibWeb/Bindings/MainThreadVM.h>
#include <LibWeb/Bindings/NodePrototype.h>
#include <LibWeb/DOM/Attr.h>
#include <LibWeb/DOM/Comment.h>
#include <LibWeb/DOM/DocumentType.h>
#include <LibWeb/DOM/Element.h>