| Index: third_party/WebKit/Source/core/frame/FrameSerializer.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameSerializer.cpp b/third_party/WebKit/Source/core/frame/FrameSerializer.cpp
|
| index fd8184d5ded673bbd6ad42192fb5644ea5e2dcbe..22d254cea068b49dfffd1c481dc2f154a90dfd95 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameSerializer.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameSerializer.cpp
|
| @@ -351,8 +351,9 @@ void FrameSerializer::serializeCSSStyleSheet(CSSStyleSheet& styleSheet,
|
| bool isInlineCss = !url.isValid() || url.protocolIsData();
|
| // If this CSS is not inline then it is identifiable by its URL. So just skip
|
| // it if it has already been analyzed before.
|
| - if (!isInlineCss && (m_resourceURLs.contains(url) ||
|
| - m_delegate.shouldSkipResourceWithURL(url))) {
|
| + if (!isInlineCss &&
|
| + (m_resourceURLs.contains(url) ||
|
| + m_delegate.shouldSkipResourceWithURL(url))) {
|
| return;
|
| }
|
|
|
|
|