Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(615)

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.cpp

Issue 2681833004: Automatically generate EBreakBetween & EBreakInside (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
index 60568dbb9c73833d2c8826f4b5e160f0e7f250b6..285c99b126b8fe20da1a0f819f81031395f0a47b 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -373,9 +373,6 @@ void ComputedStyle::copyNonInheritedFromCached(const ComputedStyle& other) {
m_nonInheritedData.m_position = other.m_nonInheritedData.m_position;
m_nonInheritedData.m_hasViewportUnits =
other.m_nonInheritedData.m_hasViewportUnits;
- m_nonInheritedData.m_breakBefore = other.m_nonInheritedData.m_breakBefore;
- m_nonInheritedData.m_breakAfter = other.m_nonInheritedData.m_breakAfter;
- m_nonInheritedData.m_breakInside = other.m_nonInheritedData.m_breakInside;
m_nonInheritedData.m_hasRemUnits = other.m_nonInheritedData.m_hasRemUnits;
// Correctly set during selector matching:

Powered by Google App Engine
This is Rietveld 408576698