| Index: Source/core/dom/TreeScope.cpp
|
| diff --git a/Source/core/dom/TreeScope.cpp b/Source/core/dom/TreeScope.cpp
|
| index e20240f8ad312206fee3c68fbe27965a354593ad..0dce0abfa95c74802ba2d7f2716fbd2f3d079bbd 100644
|
| --- a/Source/core/dom/TreeScope.cpp
|
| +++ b/Source/core/dom/TreeScope.cpp
|
| @@ -208,7 +208,7 @@ HTMLMapElement* TreeScope::getImageMap(const String& url) const
|
| if (!m_imageMapsByName)
|
| return 0;
|
| size_t hashPos = url.find('#');
|
| - String name = (hashPos == notFound ? url : url.substring(hashPos + 1)).impl();
|
| + String name = (hashPos == kNotFound ? url : url.substring(hashPos + 1)).impl();
|
| if (rootNode()->document().isHTMLDocument())
|
| return toHTMLMapElement(m_imageMapsByName->getElementByLowercasedMapName(AtomicString(name.lower()).impl(), this));
|
| return toHTMLMapElement(m_imageMapsByName->getElementByMapName(AtomicString(name).impl(), this));
|
|
|