LibWeb: Parse "form" tags during the "in body" insertion mode

This commit is contained in:
Andreas Kling 2020-05-30 11:13:57 +02:00
commit fbd52047bb
Notes: sideshowbarker 2024-07-19 05:57:41 +09:00
3 changed files with 36 additions and 2 deletions

View file

@ -55,6 +55,7 @@ public:
bool has_in_scope(const Element&) const;
bool contains(const Element&) const;
bool contains(const FlyString& tag_name) const;
const NonnullRefPtrVector<Element>& elements() const { return m_elements; }
NonnullRefPtrVector<Element>& elements() { return m_elements; }