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
commit fb11741f20
Notes: sideshowbarker 2024-07-17 18:16:21 +09:00
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_);
}