diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-20 11:50:29 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-20 12:05:56 +0200 |
commit | b092353e4d1f74117d7530e8db3a09343b402d93 (patch) | |
tree | 1e3f1014a8c1bbc58ed3f4a84f8b00e6b0b97388 /Userland/Libraries/LibWeb/HTML/HTMLFormElement.h | |
parent | 00d8e3b02b63cfa06e53ddb60ba8dfdf26b3418b (diff) | |
download | serenity-b092353e4d1f74117d7530e8db3a09343b402d93.zip |
LibWeb: Add basic support for HTMLInputElement.form
HTMLInputElement now inherits from FormAssociatedElement, which will
be a common base for the handful of elements that need to track their
owner form (and register with it for the form.elements collection.)
At the moment, the owner form is assigned during DOM insertion/removal
of an HTMLInputElement. I didn't implement any of the legacy behaviors
defined by the HTML parsing spec yet.
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLFormElement.h')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLFormElement.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLFormElement.h b/Userland/Libraries/LibWeb/HTML/HTMLFormElement.h index 8c5b3d1669..0368880494 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLFormElement.h +++ b/Userland/Libraries/LibWeb/HTML/HTMLFormElement.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> + * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org> * All rights reserved. * * Redistribution and use in source and binary forms, with or without |