Changeset 156397 in webkit for trunk/Source/WebCore/rendering/RenderTextControlSingleLine.cpp
- Timestamp:
- Sep 25, 2013, 8:40:58 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderTextControlSingleLine.cpp
r156314 r156397 448 448 } 449 449 450 bool RenderTextControlSingleLine::scroll(ScrollDirection direction, ScrollGranularity granularity, float multiplier, Node** stopNode)450 bool RenderTextControlSingleLine::scroll(ScrollDirection direction, ScrollGranularity granularity, float multiplier, Element** stopElement) 451 451 { 452 452 RenderBox* renderer = innerTextElement()->renderBox(); … … 456 456 if (layer && layer->scroll(direction, granularity, multiplier)) 457 457 return true; 458 return RenderBlock::scroll(direction, granularity, multiplier, stop Node);459 } 460 461 bool RenderTextControlSingleLine::logicalScroll(ScrollLogicalDirection direction, ScrollGranularity granularity, float multiplier, Node** stopNode)458 return RenderBlock::scroll(direction, granularity, multiplier, stopElement); 459 } 460 461 bool RenderTextControlSingleLine::logicalScroll(ScrollLogicalDirection direction, ScrollGranularity granularity, float multiplier, Element** stopElement) 462 462 { 463 463 RenderLayer* layer = innerTextElement()->renderBox()->layer(); 464 464 if (layer && layer->scroll(logicalToPhysical(direction, style()->isHorizontalWritingMode(), style()->isFlippedBlocksWritingMode()), granularity, multiplier)) 465 465 return true; 466 return RenderBlock::logicalScroll(direction, granularity, multiplier, stop Node);466 return RenderBlock::logicalScroll(direction, granularity, multiplier, stopElement); 467 467 } 468 468
Note:
See TracChangeset
for help on using the changeset viewer.