
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
21 lines
519 B
C++
21 lines
519 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/HTML/FormAssociatedElement.h>
|
|
#include <LibWeb/HTML/HTMLFormElement.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
void FormAssociatedElement::set_form(HTMLFormElement* form)
|
|
{
|
|
if (m_form)
|
|
m_form->remove_associated_element({}, form_associated_element_to_html_element());
|
|
m_form = form;
|
|
if (m_form)
|
|
m_form->add_associated_element({}, form_associated_element_to_html_element());
|
|
}
|
|
|
|
}
|