Index: Source/core/page/EventHandler.cpp |
diff --git a/Source/core/page/EventHandler.cpp b/Source/core/page/EventHandler.cpp |
index 6a38d592d4f6f3e0f6b880098b3d28ac8645f52c..a60edf238da7a23f981fc62823e51ea314077dbd 100644 |
--- a/Source/core/page/EventHandler.cpp |
+++ b/Source/core/page/EventHandler.cpp |
@@ -915,7 +915,7 @@ bool EventHandler::scroll(ScrollDirection direction, ScrollGranularity granulari |
RenderBox* curBox = node->renderer()->enclosingBox(); |
while (curBox && (rootLayerScrolls || !curBox->isRenderView())) { |
ScrollDirection physicalDirection = toPhysicalDirection( |
- direction, curBox->isHorizontalWritingMode(), curBox->style()->slowIsFlippedBlocksWritingMode()); |
+ direction, curBox->isHorizontalWritingMode(), curBox->style()->isFlippedBlocksWritingMode()); |
Rick Byers
2014/11/27 15:55:14
What is this change?
lanwei
2014/12/02 06:28:22
I do not know, I did not make this change. I guess
|
// If we're at the stopNode, we should try to scroll it but we shouldn't bubble past it |
bool shouldStopBubbling = stopNode && *stopNode && curBox->node() == *stopNode; |