| 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..f9b95975186f91d20fe8e07c05d80a7353deddd3 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
|
| @@ -291,7 +291,9 @@ void HTMLLinkElement::dispatchPendingEvent(
|
| }
|
|
|
| void HTMLLinkElement::scheduleEvent() {
|
| - TaskRunnerHelper::get(TaskType::DOMManipulation, &document())
|
| + // TODO(hiroshige): Use DOMManipulation task runner. Unthrottled
|
| + // is temporarily used for fixing https://crbug.com/649942 only on M-56.
|
| + TaskRunnerHelper::get(TaskType::Unthrottled, &document())
|
| ->postTask(
|
| BLINK_FROM_HERE,
|
| WTF::bind(&HTMLLinkElement::dispatchPendingEvent,
|
|
|