| Index: third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp b/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
|
| index d3b1f7f60e7d91a49bc874ca05ee8f9b2a3de1bc..0a9785506d69fdeb498229b2eb82518642f1958b 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
|
| @@ -119,7 +119,9 @@ void HTMLStyleElement::notifyLoadedSheetAndAllCriticalSubresources(
|
| if (m_firedLoad && isLoadEvent)
|
| return;
|
| m_loadedSheet = isLoadEvent;
|
| - 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(&HTMLStyleElement::dispatchPendingEvent,
|
|
|