1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 01:27:42 +00:00

LibWeb: Port DOM::Document from DeprecatedString

This commit is contained in:
Shannon Booth 2023-12-03 08:58:43 +13:00 committed by Andreas Kling
parent c4d3134436
commit f976ec005c
12 changed files with 55 additions and 55 deletions

View file

@ -42,7 +42,7 @@ void SVGTitleElement::children_changed()
auto* document_element = document().document_element();
if (document_element == parent() && is<SVGElement>(document_element))
page->client().page_did_change_title(document().title());
page->client().page_did_change_title(document().title().to_deprecated_string());
}
}