mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			725 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			725 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, DOM::QualifiedName qualified_name)
 | 
						|
    : HTMLElement(document, move(qualified_name))
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
HTMLTitleElement::~HTMLTitleElement()
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
void HTMLTitleElement::children_changed()
 | 
						|
{
 | 
						|
    HTMLElement::children_changed();
 | 
						|
    if (auto* page = document().page()) {
 | 
						|
        if (document().browsing_context() == &page->top_level_browsing_context())
 | 
						|
            page->client().page_did_change_title(document().title());
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
}
 |