diff options
author | Rohan Prinja <rohan.prinja@gmail.com> | 2014-11-22 14:41:47 +0530 |
---|---|---|
committer | Rohan Prinja <rohan.prinja@gmail.com> | 2014-11-23 14:51:04 +0530 |
commit | 4b754bd457309b76b10f9f665753f85d3dd632d0 (patch) | |
tree | 5020fcde350f5d52abb7f6fd1fabbb73c9819095 /components/script/dom/node.rs | |
parent | b4c3aec383b2b1cd19ab6267775f9fb3735aa977 (diff) | |
download | servo-4b754bd457309b76b10f9f665753f85d3dd632d0.tar.gz servo-4b754bd457309b76b10f9f665753f85d3dd632d0.zip |
implement Document#createAttribute
Diffstat (limited to 'components/script/dom/node.rs')
-rw-r--r-- | components/script/dom/node.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/node.rs b/components/script/dom/node.rs index 0242363dbf7..a1d724e2a88 100644 --- a/components/script/dom/node.rs +++ b/components/script/dom/node.rs @@ -1558,7 +1558,7 @@ impl Node { &Attr::new(*window, attr.local_name().clone(), attr.value().clone(), attr.name().clone(), attr.namespace().clone(), - attr.prefix().clone(), copy_elem)); + attr.prefix().clone(), Some(copy_elem))); } }, _ => () |