1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 18:45:07 +00:00

LibWeb: Port HTMLFormElement from ByteString

This commit is contained in:
Shannon Booth 2023-12-24 15:51:37 +13:00 committed by Andreas Kling
parent 0b7c8e0de5
commit 10e5458e27
2 changed files with 10 additions and 8 deletions

View file

@ -35,7 +35,7 @@ class HTMLFormElement final : public HTMLElement {
public:
virtual ~HTMLFormElement() override;
ByteString action_from_form_element(JS::NonnullGCPtr<HTMLElement> element) const;
String action_from_form_element(JS::NonnullGCPtr<HTMLElement> element) const;
enum class MethodAttributeState {
#define __ENUMERATE_FORM_METHOD_ATTRIBUTE(_, state) state,