| Index: Source/core/dom/Element.cpp
|
| diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp
|
| index 0ed7188a034e1c42c5583d9f46090202d1aa902e..2975d17e782e146c7b91aa11fb5ee2b769cc36f6 100644
|
| --- a/Source/core/dom/Element.cpp
|
| +++ b/Source/core/dom/Element.cpp
|
| @@ -1271,7 +1271,7 @@ const AtomicString& Element::locateNamespacePrefix(const AtomicString& namespace
|
|
|
| KURL Element::baseURI() const
|
| {
|
| - const AtomicString& baseAttribute = getAttribute(baseAttr);
|
| + const AtomicString& baseAttribute = fastGetAttribute(baseAttr);
|
| KURL base(KURL(), baseAttribute);
|
| if (!base.protocol().isEmpty())
|
| return base;
|
| @@ -2950,7 +2950,7 @@ void Element::webkitRequestPointerLock()
|
|
|
| SpellcheckAttributeState Element::spellcheckAttributeState() const
|
| {
|
| - const AtomicString& value = getAttribute(HTMLNames::spellcheckAttr);
|
| + const AtomicString& value = fastGetAttribute(spellcheckAttr);
|
| if (value == nullAtom)
|
| return SpellcheckAttributeDefault;
|
| if (equalIgnoringCase(value, "true") || equalIgnoringCase(value, ""))
|
|
|