| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index 144707c24ad8cbf0b2f71577088c1a93e9fa319c..026898cac1892c4aee2353b4b497952fd76554a1 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -428,8 +428,7 @@ Document::Document(const DocumentInit& initializer,
|
| m_importsController(initializer.importsController()),
|
| m_contextFeatures(ContextFeatures::defaultSwitch()),
|
| m_wellFormed(false),
|
| - m_printing(false),
|
| - m_wasPrinting(false),
|
| + m_printing(NotPrinting),
|
| m_paginatedForScreen(false),
|
| m_compatibilityMode(NoQuirksMode),
|
| m_compatibilityModeLocked(false),
|
| @@ -1936,8 +1935,6 @@ void Document::updateStyle() {
|
|
|
| resolver.clearStyleSharingList();
|
|
|
| - m_wasPrinting = m_printing;
|
| -
|
| DCHECK(!needsStyleRecalc());
|
| DCHECK(!childNeedsStyleRecalc());
|
| DCHECK(inStyleRecalc());
|
|
|