diff options
author | Sam Gibson <sam@ifdown.net> | 2015-12-01 20:40:37 +1100 |
---|---|---|
committer | Sam Gibson <sam@ifdown.net> | 2015-12-03 14:00:53 +1100 |
commit | 2ba1750c403e59556f667b163d5d2a90dd5f6dd6 (patch) | |
tree | 0f766072a20256a909e31183b2a6870a7a31a291 /components/script/dom/element.rs | |
parent | 419a26e6192a31478302c310910f1ae8f6f5e3ae (diff) | |
download | servo-2ba1750c403e59556f667b163d5d2a90dd5f6dd6.tar.gz servo-2ba1750c403e59556f667b163d5d2a90dd5f6dd6.zip |
Resolves long-running merge conflicts
Diffstat (limited to 'components/script/dom/element.rs')
-rw-r--r-- | components/script/dom/element.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/element.rs b/components/script/dom/element.rs index 3cec88f148f..a5897ed80ac 100644 --- a/components/script/dom/element.rs +++ b/components/script/dom/element.rs @@ -1095,7 +1095,7 @@ impl Element { assert!(local_name.chars().all(|ch| { !ch.is_ascii() || ch.to_ascii_lowercase() == ch })); - let attribute = self.get_attribute(&ns!(""), local_name); + let attribute = self.get_attribute(&ns!(), local_name); match attribute { Some(ref attribute) => { |