Index: Source/core/html/HTMLElement.h |
diff --git a/Source/core/html/HTMLElement.h b/Source/core/html/HTMLElement.h |
index 3ce2ffebc6b32ea811abdb786ff645f09a6dd8d7..caebe54a6fffeaa5222045fdb9c3fdca8b00792e 100644 |
--- a/Source/core/html/HTMLElement.h |
+++ b/Source/core/html/HTMLElement.h |
@@ -137,7 +137,7 @@ DEFINE_NODE_TYPE_CASTS(HTMLElement, isHTMLElement()); |
inline HTMLElement::HTMLElement(const QualifiedName& tagName, Document& document, ConstructionType type = CreateHTMLElement) |
: Element(tagName, &document, type) |
{ |
- ASSERT(tagName.localName().impl()); |
+ ASSERT(!tagName.localName().isNull()); |
ScriptWrappable::init(this); |
} |