Changeset 53111 in webkit


Ignore:
Timestamp:
Jan 11, 2010 4:42:08 PM (14 years ago)
Author:
kov@webkit.org
Message:

2010-01-11 Gustavo Noronha Silva <Gustavo Noronha Silva>

Reviewed by Eric Seidel.

[GTK] Debug bots crashing in plugins/iframe-shims.html
https://bugs.webkit.org/show_bug.cgi?id=33472

Call computeOffsetInContainerNode() instead of
offsetInContainerNode(), since we are not sure this is always
parent-anchored.

plugins/iframe-shims.html no longer ASSERTS

  • accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (objectAndOffsetUnignored):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r53110 r53111  
     12010-01-11  Gustavo Noronha Silva  <gns@gnome.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [GTK] Debug bots crashing in plugins/iframe-shims.html
     6        https://bugs.webkit.org/show_bug.cgi?id=33472
     7
     8        Call computeOffsetInContainerNode() instead of
     9        offsetInContainerNode(), since we are not sure this is always
     10        parent-anchored.
     11
     12        plugins/iframe-shims.html no longer ASSERTS
     13
     14        * accessibility/gtk/AccessibilityObjectWrapperAtk.cpp:
     15        (objectAndOffsetUnignored):
     16
    1172010-01-11  Simon Fraser  <simon.fraser@apple.com>
    218
  • trunk/WebCore/accessibility/gtk/AccessibilityObjectWrapperAtk.cpp

    r53072 r53111  
    17471747{
    17481748    Node* endNode = static_cast<AccessibilityRenderObject*>(coreObject)->renderer()->node();
    1749     int endOffset = coreObject->selection().end().offsetInContainerNode();
     1749    int endOffset = coreObject->selection().end().computeOffsetInContainerNode();
    17501750
    17511751    AccessibilityObject* realObject = coreObject;
Note: See TracChangeset for help on using the changeset viewer.