Index: Source/core/dom/ElementRareData.cpp |
diff --git a/Source/core/dom/ElementRareData.cpp b/Source/core/dom/ElementRareData.cpp |
index 8ae8da2e13c5ba8224368895c31dea7cf4ae6560..916430959661fc610a0328c9da379e109a660077 100644 |
--- a/Source/core/dom/ElementRareData.cpp |
+++ b/Source/core/dom/ElementRareData.cpp |
@@ -40,6 +40,10 @@ struct SameSizeAsElementRareData : NodeRareData { |
LayoutSize sizeForResizing; |
IntSize scrollOffset; |
void* pointers[14]; |
+#if !ENABLE(OILPAN) |
+ // TODO: Decide to add following element to check persistent. |
+ void* persistents[1][5]; |
+#endif |
peria
2015/05/01 07:50:28
NOTE:
With this change, the size of ElementRareDat
haraken
2015/05/01 09:04:07
This is because sizeof(Persistent) is too large. I
|
}; |
CSSStyleDeclaration& ElementRareData::ensureInlineCSSStyleDeclaration(Element* ownerElement) |