Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / rendering / RenderGeometryMap.cpp
index 3f553c4..6de073c 100644 (file)
@@ -198,10 +198,10 @@ static bool canMapBetweenRenderers(const RenderObject* renderer, const RenderObj
 {
     for (const RenderObject* current = renderer; ; current = current->parent()) {
         const RenderStyle* style = current->style();
-        if (style->position() == FixedPosition || style->isFlippedBlocksWritingMode())
+        if (style->position() == FixedPosition || style->slowIsFlippedBlocksWritingMode())
             return false;
 
-        if (current->hasColumns() || current->hasTransform() || current->isRenderFlowThread() || current->isSVGRoot())
+        if (current->hasColumns() || current->hasTransformRelatedProperty() || current->isRenderFlowThread() || current->isSVGRoot())
             return false;
 
         if (current == ancestor)