| Index: Source/core/html/HTMLLinkElement.cpp
|
| diff --git a/Source/core/html/HTMLLinkElement.cpp b/Source/core/html/HTMLLinkElement.cpp
|
| index f6db5df2720afed152bd35efcbc46d2006485534..23533d96600b404417eae1926789bc48424e1755 100644
|
| --- a/Source/core/html/HTMLLinkElement.cpp
|
| +++ b/Source/core/html/HTMLLinkElement.cpp
|
| @@ -251,11 +251,11 @@ void HTMLLinkElement::process()
|
| link->process();
|
| }
|
|
|
| -void HTMLLinkElement::enableIfExitTransitionStyle()
|
| +void HTMLLinkElement::setEnabledIfExitTransitionStyle(bool enabled)
|
| {
|
| if (m_relAttribute.isTransitionExitingStylesheet()) {
|
| if (LinkStyle* link = linkStyle())
|
| - link->setDisabledState(false);
|
| + link->setDisabledState(!enabled);
|
| }
|
| }
|
|
|
|
|