| Index: Source/core/css/StyleSheetContents.cpp
|
| diff --git a/Source/core/css/StyleSheetContents.cpp b/Source/core/css/StyleSheetContents.cpp
|
| index 336bae5caa888582cb1caa9d5b1265b85c9f1ad1..14c9bece6c175add54cb609176c0852fe0827650 100644
|
| --- a/Source/core/css/StyleSheetContents.cpp
|
| +++ b/Source/core/css/StyleSheetContents.cpp
|
| @@ -476,11 +476,11 @@ static bool childRulesHaveFailedOrCanceledSubresources(const WillBeHeapVector<Re
|
| const StyleRuleBase* rule = rules[i].get();
|
| switch (rule->type()) {
|
| case StyleRuleBase::Style:
|
| - if (toStyleRule(rule)->properties()->hasFailedOrCanceledSubresources())
|
| + if (toStyleRule(rule)->properties().hasFailedOrCanceledSubresources())
|
| return true;
|
| break;
|
| case StyleRuleBase::FontFace:
|
| - if (toStyleRuleFontFace(rule)->properties()->hasFailedOrCanceledSubresources())
|
| + if (toStyleRuleFontFace(rule)->properties().hasFailedOrCanceledSubresources())
|
| return true;
|
| break;
|
| case StyleRuleBase::Media:
|
|
|