Index: third_party/WebKit/Source/core/dom/Node.h |
diff --git a/third_party/WebKit/Source/core/dom/Node.h b/third_party/WebKit/Source/core/dom/Node.h |
index db272ce5fe2288385157134c65a27510fbfb9126..2410b54fee968e7a780282fdca1529e32f009890 100644 |
--- a/third_party/WebKit/Source/core/dom/Node.h |
+++ b/third_party/WebKit/Source/core/dom/Node.h |
@@ -522,10 +522,11 @@ public: |
struct AttachContext { |
STACK_ALLOCATED(); |
- ComputedStyle* resolvedStyle; |
- bool performingReattach; |
+ ComputedStyle* resolvedStyle = nullptr; |
+ bool performingReattach = false; |
+ bool clearInvalidation = false; |
- AttachContext() : resolvedStyle(nullptr), performingReattach(false) { } |
+ AttachContext() { } |
}; |
// Attaches this node to the layout tree. This calculates the style to be applied to the node and creates an |