Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

if xmlns attribute is specified, use that namespace when creating ele… #3629

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 8 additions & 1 deletion packages/yew/src/dom_bundle/btag/mod.rs
Expand Up @@ -233,7 +233,14 @@ impl Reconcilable for VTag {
impl VTag {
fn create_element(&self, parent: &Element) -> Element {
let tag = self.tag();


// check for an xmlns attribute. If it exists, create an element with the specified namespace
let xmlns = self.attributes.iter().find(|(k, _)| *k == "xmlns").map(|(_, v)| v);
if let Some(xmlns) = xmlns {
document()
.create_element_ns(Some(xmlns), tag)
.expect("can't create namespaced element for vtag")
} else
if tag == "svg"
|| parent
.namespace_uri()
Expand Down