mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:28:12 +00:00
LibWeb: Make factory method of HTML::DOMStringMap fallible
This commit is contained in:
parent
809206f50e
commit
b604bbaf29
4 changed files with 8 additions and 5 deletions
|
@ -12,7 +12,7 @@ namespace Web::SVG {
|
|||
|
||||
SVGElement::SVGElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: Element(document, move(qualified_name))
|
||||
, m_dataset(HTML::DOMStringMap::create(*this))
|
||||
, m_dataset(HTML::DOMStringMap::create(*this).release_value_but_fixme_should_propagate_errors())
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue