Changeset 88008 in webkit


Ignore:
Timestamp:
Jun 3, 2011 5:36:45 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-06-03 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r88004.
http://trac.webkit.org/changeset/88004
https://bugs.webkit.org/show_bug.cgi?id=62008

This patch broke 4 tests in the GTK bots (Requested by
msanchez on #webkit).

  • platform/gtk/accessibility/caret-browsing-anchor-followed-expected.txt: Removed.
  • platform/gtk/accessibility/caret-browsing-anchor-followed.html: Removed.

2011-06-03 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r88004.
http://trac.webkit.org/changeset/88004
https://bugs.webkit.org/show_bug.cgi?id=62008

This patch broke 4 tests in the GTK bots (Requested by
msanchez on #webkit).

  • accessibility/gtk/AXObjectCacheAtk.cpp: (WebCore::AXObjectCache::handleScrolledToAnchor):
Location:
trunk
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r88007 r88008  
     12011-06-03  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r88004.
     4        http://trac.webkit.org/changeset/88004
     5        https://bugs.webkit.org/show_bug.cgi?id=62008
     6
     7        This patch broke 4 tests in the GTK bots (Requested by
     8        msanchez on #webkit).
     9
     10        * platform/gtk/accessibility/caret-browsing-anchor-followed-expected.txt: Removed.
     11        * platform/gtk/accessibility/caret-browsing-anchor-followed.html: Removed.
     12
    1132011-06-03  Nikolas Zimmermann  <nzimmermann@rim.com>
    214
  • trunk/Source/WebCore/ChangeLog

    r88007 r88008  
     12011-06-03  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r88004.
     4        http://trac.webkit.org/changeset/88004
     5        https://bugs.webkit.org/show_bug.cgi?id=62008
     6
     7        This patch broke 4 tests in the GTK bots (Requested by
     8        msanchez on #webkit).
     9
     10        * accessibility/gtk/AXObjectCacheAtk.cpp:
     11        (WebCore::AXObjectCache::handleScrolledToAnchor):
     12
    1132011-06-03  Nikolas Zimmermann  <nzimmermann@rim.com>
    214
  • trunk/Source/WebCore/accessibility/gtk/AXObjectCacheAtk.cpp

    r88004 r88008  
    2424#include "AccessibilityObjectWrapperAtk.h"
    2525#include "Document.h"
    26 #include "Frame.h"
    27 #include "FrameSelection.h"
    2826#include "Element.h"
    2927#include "GOwnPtr.h"
    3028#include "Range.h"
    3129#include "SelectElement.h"
    32 #include "TextAffinity.h"
    3330#include "TextIterator.h"
    34 #include "htmlediting.h"
    3531
    3632namespace WebCore {
     
    210206}
    211207
    212 void AXObjectCache::handleScrolledToAnchor(const Node* node)
    213 {
    214     // Make sure the caret position is set to the anchor position, so
    215     // further use of arrow keys work as expected.
    216     Document* document = node->document();
    217     if (!document)
    218         return;
    219 
    220     Frame* frame = document->frame();
    221     if (!frame)
    222         return;
    223 
    224     FrameSelection* selection = frame->selection();
    225     if (!selection)
    226         return;
    227 
    228     selection->moveTo(firstPositionInOrBeforeNode(const_cast<Node*>(node)), DOWNSTREAM);
     208void AXObjectCache::handleScrolledToAnchor(const Node*)
     209{
    229210}
    230211
Note: See TracChangeset for help on using the changeset viewer.