mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:57:44 +00:00
LibWeb: Port CSS::MediaQuery to new Strings
This commit is contained in:
parent
a381ce9519
commit
a0b1eddc56
4 changed files with 7 additions and 10 deletions
|
@ -45,7 +45,7 @@ void MediaQueryList::visit_edges(Cell::Visitor& visitor)
|
|||
// https://drafts.csswg.org/cssom-view/#dom-mediaquerylist-media
|
||||
DeprecatedString MediaQueryList::media() const
|
||||
{
|
||||
return serialize_a_media_query_list(m_media);
|
||||
return serialize_a_media_query_list(m_media).release_value_but_fixme_should_propagate_errors().to_deprecated_string();
|
||||
}
|
||||
|
||||
// https://drafts.csswg.org/cssom-view/#dom-mediaquerylist-matches
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue