| Index: third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp b/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
|
| index 06a8129631ec454bb9090660d522cbdf78bc5917..2e827f63b896bfa6afc499687ad5e04b9f3bf32d 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
|
| @@ -99,7 +99,7 @@ void HTMLLinkElement::parseAttribute(const QualifiedName& name,
|
| } else {
|
| if (name == titleAttr) {
|
| if (LinkStyle* link = linkStyle())
|
| - link->setSheetTitle(value, StyleEngine::UpdateActiveSheets);
|
| + link->setSheetTitle(value);
|
| }
|
|
|
| HTMLElement::parseAttribute(name, oldValue, value);
|
| @@ -217,14 +217,8 @@ void HTMLLinkElement::removedFrom(ContainerNode* insertionPoint) {
|
| return;
|
| }
|
| document().styleEngine().removeStyleSheetCandidateNode(*this);
|
| -
|
| - StyleSheet* removedSheet = sheet();
|
| -
|
| if (m_link)
|
| m_link->ownerRemoved();
|
| -
|
| - document().styleEngine().setNeedsActiveStyleUpdate(removedSheet,
|
| - FullStyleUpdate);
|
| }
|
|
|
| void HTMLLinkElement::finishParsingChildren() {
|
|
|