1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-08 14:57:35 +00:00

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
parent 851a0f983a
commit fbd52047bb
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; }