Changeset 147565 in webkit


Ignore:
Timestamp:
Apr 3, 2013 9:43:32 AM (11 years ago)
Author:
kangil.han@samsung.com
Message:

Add omitted reference operator of VisiblePosition in AccessibilityObject
https://bugs.webkit.org/show_bug.cgi?id=113879

Reviewed by Darin Adler.

Seems reference operator has been omitted in startOfStyleRange function, so add it.

  • accessibility/AccessibilityObject.cpp:

(WebCore::startOfStyleRange):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r147562 r147565  
     12013-04-03  Kangil Han  <kangil.han@samsung.com>
     2
     3        Add omitted reference operator of VisiblePosition in AccessibilityObject
     4        https://bugs.webkit.org/show_bug.cgi?id=113879
     5
     6        Reviewed by Darin Adler.
     7
     8        Seems reference operator has been omitted in startOfStyleRange function, so add it.
     9
     10        * accessibility/AccessibilityObject.cpp:
     11        (WebCore::startOfStyleRange):
     12
    1132013-04-03  Jessie Berlin  <jberlin@apple.com>
    214
  • trunk/Source/WebCore/accessibility/AccessibilityObject.cpp

    r147236 r147565  
    738738}
    739739
    740 static VisiblePosition startOfStyleRange(const VisiblePosition visiblePos)
     740static VisiblePosition startOfStyleRange(const VisiblePosition& visiblePos)
    741741{
    742742    RenderObject* renderer = visiblePos.deepEquivalent().deprecatedNode()->renderer();
Note: See TracChangeset for help on using the changeset viewer.