| 1190 | Point selfDirectionDependentVisual = convertParentVisualToSelfVisual(parentDirectionDependentVisual); |
| 1191 | for (ViewNode* childViewNode : *this) { |
| 1192 | if (childViewNode->canScroll(selfDirectionDependentVisual, scrollDirection)) { |
| 1193 | return true; |
| 1194 | } |
| 1195 | } |
| 1196 | return false; |
| 1197 | } |
| 1198 | |
| 1199 | bool ViewNode::isScrollingOrAnimatingScroll() const { |
| 1200 | if (!isInScrollMode()) { |
| 1201 | return false; |
no test coverage detected