| Index: third_party/WebKit/WebCore/dom/QualifiedName.h
|
| ===================================================================
|
| --- third_party/WebKit/WebCore/dom/QualifiedName.h (revision 11711)
|
| +++ third_party/WebKit/WebCore/dom/QualifiedName.h (working copy)
|
| @@ -49,7 +49,7 @@
|
| QualifiedNameImpl(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI)
|
| : m_prefix(prefix)
|
| , m_localName(localName)
|
| - , m_namespace(namespaceURI)
|
| + , m_namespace(namespaceURI.isEmpty() ? nullAtom : namespaceURI)
|
| {
|
| }
|
| };
|
|
|