1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibWeb: Port MediaList interface from DeprecatedString to String

This commit is contained in:
Shannon Booth 2023-08-26 17:24:11 +12:00 committed by Andrew Kaster
parent 72f54eca26
commit ff45874d4e
4 changed files with 14 additions and 14 deletions

View file

@ -37,7 +37,7 @@ void CSSMediaRule::visit_edges(Cell::Visitor& visitor)
DeprecatedString CSSMediaRule::condition_text() const
{
return m_media->media_text();
return m_media->media_text().to_deprecated_string();
}
void CSSMediaRule::set_condition_text(DeprecatedString text)