| Index: Source/core/html/HTMLLinkElement.cpp
|
| diff --git a/Source/core/html/HTMLLinkElement.cpp b/Source/core/html/HTMLLinkElement.cpp
|
| index c8adc39a702df555cb062956643905bb389ffef3..7290ad7543cf69b207e4cbeaa288c2f51cb38d73 100644
|
| --- a/Source/core/html/HTMLLinkElement.cpp
|
| +++ b/Source/core/html/HTMLLinkElement.cpp
|
| @@ -314,7 +314,7 @@ KURL HTMLLinkElement::href() const
|
| return document().completeURL(getAttribute(hrefAttr));
|
| }
|
|
|
| -String HTMLLinkElement::rel() const
|
| +const AtomicString& HTMLLinkElement::rel() const
|
| {
|
| return getAttribute(relAttr);
|
| }
|
| @@ -324,7 +324,7 @@ String HTMLLinkElement::target() const
|
| return getAttribute(targetAttr);
|
| }
|
|
|
| -String HTMLLinkElement::type() const
|
| +const AtomicString& HTMLLinkElement::type() const
|
| {
|
| return getAttribute(typeAttr);
|
| }
|
|
|