LibWeb: Use the prefix passed to Document.createElementNS()

1% progression on ACID3. :^)
This commit is contained in:
Andreas Kling
2022-02-25 21:29:12 +01:00
parent fa17776a51
commit fb11741f20
2 changed files with 11 additions and 4 deletions

View File

@@ -10,6 +10,6 @@
namespace Web::DOM {
NonnullRefPtr<Element> create_element(Document&, const FlyString& tag_name, const FlyString& namespace_);
NonnullRefPtr<Element> create_element(Document&, FlyString tag_name, FlyString namespace_);
}