| Index: Source/core/html/HTMLLinkElement.cpp
|
| diff --git a/Source/core/html/HTMLLinkElement.cpp b/Source/core/html/HTMLLinkElement.cpp
|
| index f6db5df2720afed152bd35efcbc46d2006485534..84201f6827f8c9edfaf157e39fb19820f337d58d 100644
|
| --- a/Source/core/html/HTMLLinkElement.cpp
|
| +++ b/Source/core/html/HTMLLinkElement.cpp
|
| @@ -259,6 +259,14 @@ void HTMLLinkElement::enableIfExitTransitionStyle()
|
| }
|
| }
|
|
|
| +void HTMLLinkElement::disableIfExitTransitionStyle()
|
| +{
|
| + if (m_relAttribute.isTransitionExitingStylesheet()) {
|
| + if (LinkStyle* link = linkStyle())
|
| + link->setDisabledState(true);
|
| + }
|
| +}
|
| +
|
| Node::InsertionNotificationRequest HTMLLinkElement::insertedInto(ContainerNode* insertionPoint)
|
| {
|
| if (insertionPoint->inDocument()) {
|
|
|