Chromium Code Reviews

Unified Diff: Source/core/dom/Node.h

Issue 24350009: Reverse style resolution to avoid N^2 walk when building the render tree (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixing loops in Regions Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/dom/Node.h
diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
index ab4310c57f35adfdbfd6568e6df5ca7bb43f6d73..fbae13b6423f77cbd45a4b9a4e754a52af79efc1 100644
--- a/Source/core/dom/Node.h
+++ b/Source/core/dom/Node.h
@@ -410,6 +410,8 @@ public:
void lazyAttach();
void lazyReattach();
+ void reattachWhitespaceSiblings() const;
+
virtual void setFocus(bool flag);
virtual void setActive(bool flag = true, bool pause = false);
virtual void setHovered(bool flag = true);

Powered by Google App Engine