| 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 8b7d3d5e3425bd9e2d031572dd665ad0d613bdb9..2dfd1d454949f16c96e2aef344fdb68593579243 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLStyleElement.cpp
|
| @@ -117,7 +117,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(
|
|
|