
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 *
31 lines
693 B
C++
31 lines
693 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/DOM/Document.h>
|
|
#include <LibWeb/HTML/HTMLTitleElement.h>
|
|
#include <LibWeb/Page/Page.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
HTMLTitleElement::HTMLTitleElement(DOM::Document& document, QualifiedName qualified_name)
|
|
: HTMLElement(document, move(qualified_name))
|
|
{
|
|
}
|
|
|
|
HTMLTitleElement::~HTMLTitleElement()
|
|
{
|
|
}
|
|
|
|
void HTMLTitleElement::children_changed()
|
|
{
|
|
HTMLElement::children_changed();
|
|
if (auto* page = document().page()) {
|
|
if (document().frame() == &page->main_frame())
|
|
page->client().page_did_change_title(document().title());
|
|
}
|
|
}
|
|
|
|
}
|