Changeset 217591 in webkit


Ignore:
Timestamp:
May 30, 2017 10:48:57 PM (7 years ago)
Author:
fred.wang@free.fr
Message:

Include ScrollingTreeScrollingNode properties in ScrollingTreeFrameScrollingNode::dumpProperties
https://bugs.webkit.org/show_bug.cgi?id=172287

Patch by Frederic Wang <fwang@igalia.com> on 2017-05-30
Reviewed by Simon Fraser.

Source/WebCore:

No new tests, only changes in dumped tree.

  • page/scrolling/ScrollingTreeFrameScrollingNode.cpp:

(WebCore::ScrollingTreeFrameScrollingNode::dumpProperties): Print properties of the parent class.

LayoutTests:

Update iOS expectation to include the new node properties.

  • scrollingcoordinator/ios/ui-scrolling-tree-expected.txt: Update expectation.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r217587 r217591  
     12017-05-30  Frederic Wang  <fwang@igalia.com>
     2
     3        Include ScrollingTreeScrollingNode properties in ScrollingTreeFrameScrollingNode::dumpProperties
     4        https://bugs.webkit.org/show_bug.cgi?id=172287
     5
     6        Reviewed by Simon Fraser.
     7
     8        Update iOS expectation to include the new node properties.
     9
     10        * scrollingcoordinator/ios/ui-scrolling-tree-expected.txt: Update expectation.
     11
    1122017-05-30  Tim Horton  <timothy_horton@apple.com>
    213
  • trunk/LayoutTests/scrollingcoordinator/ios/ui-scrolling-tree-expected.txt

    r209967 r217591  
    22(scrolling tree
    33  (frame scrolling node
     4    (scrollable area size width=320 height=548)
     5    (total content size width=1308 height=2021)
     6    (last committed scroll position (0,0))
     7    (scrollable area parameters
     8      (horizontal scroll elasticity 1)
     9      (vertical scroll elasticity 1)
     10      (horizontal scrollbar mode 0)
     11      (vertical scrollbar mode 0))
    412    (layout viewport (0,0) width=320 height=548)
    513    (min layoutViewport origin (0,0))
  • trunk/Source/WebCore/ChangeLog

    r217590 r217591  
     12017-05-30  Frederic Wang  <fwang@igalia.com>
     2
     3        Include ScrollingTreeScrollingNode properties in ScrollingTreeFrameScrollingNode::dumpProperties
     4        https://bugs.webkit.org/show_bug.cgi?id=172287
     5
     6        Reviewed by Simon Fraser.
     7
     8        No new tests, only changes in dumped tree.
     9
     10        * page/scrolling/ScrollingTreeFrameScrollingNode.cpp:
     11        (WebCore::ScrollingTreeFrameScrollingNode::dumpProperties): Print properties of the parent class.
     12
    1132017-05-30  Sam Weinig  <sam@webkit.org>
    214
  • trunk/Source/WebCore/page/scrolling/ScrollingTreeFrameScrollingNode.cpp

    r212559 r217591  
    127127}
    128128
    129 void ScrollingTreeFrameScrollingNode::dumpProperties(TextStream& ts, ScrollingStateTreeAsTextBehavior) const
     129void ScrollingTreeFrameScrollingNode::dumpProperties(TextStream& ts, ScrollingStateTreeAsTextBehavior behavior) const
    130130{
    131131    ts << "frame scrolling node";
     132    ScrollingTreeScrollingNode::dumpProperties(ts, behavior);
    132133
    133134    ts.dumpProperty("layout viewport", m_layoutViewport);
Note: See TracChangeset for help on using the changeset viewer.