Changeset 220535 in webkit


Ignore:
Timestamp:
Aug 10, 2017 11:27:01 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r220463.
https://bugs.webkit.org/show_bug.cgi?id=175435

unaccepted fix (Requested by n_wang on #webkit).

Reverted changeset:

"AX: crash at
WebCore::AccessibilityObject::supportsARIALiveRegion() const +
24"
https://bugs.webkit.org/show_bug.cgi?id=175340
http://trac.webkit.org/changeset/220463

Location:
trunk
Files:
3 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r220530 r220535  
     12017-08-10  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r220463.
     4        https://bugs.webkit.org/show_bug.cgi?id=175435
     5
     6        unaccepted fix (Requested by n_wang on #webkit).
     7
     8        Reverted changeset:
     9
     10        "AX: crash at
     11        WebCore::AccessibilityObject::supportsARIALiveRegion() const +
     12        24"
     13        https://bugs.webkit.org/show_bug.cgi?id=175340
     14        http://trac.webkit.org/changeset/220463
     15
    1162017-08-10  Ryan Haddad  <ryanhaddad@apple.com>
    217
  • trunk/Source/WebCore/ChangeLog

    r220532 r220535  
     12017-08-10  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r220463.
     4        https://bugs.webkit.org/show_bug.cgi?id=175435
     5
     6        unaccepted fix (Requested by n_wang on #webkit).
     7
     8        Reverted changeset:
     9
     10        "AX: crash at
     11        WebCore::AccessibilityObject::supportsARIALiveRegion() const +
     12        24"
     13        https://bugs.webkit.org/show_bug.cgi?id=175340
     14        http://trac.webkit.org/changeset/220463
     15
    1162017-08-10  Michael Catanzaro  <mcatanzaro@igalia.com>
    217
  • trunk/Source/WebCore/rendering/RenderBlockFlow.cpp

    r220503 r220535  
    2525#include "RenderBlockFlow.h"
    2626
    27 #include "AXObjectCache.h"
    2827#include "Editor.h"
    2928#include "FloatingObjects.h"
     
    23542353
    23552354    setLogicalWidthForFloat(*floatingObject, logicalWidthForChild(floatBox) + marginStartForChild(floatBox) + marginEndForChild(floatBox));
    2356    
    2357     if (AXObjectCache* cache = document().existingAXObjectCache())
    2358         cache->childrenChanged(this);
    23592355
    23602356    return m_floatingObjects->add(WTFMove(floatingObject));
     
    23942390            }
    23952391            m_floatingObjects->remove(&floatingObject);
    2396            
    2397             if (AXObjectCache* cache = document().existingAXObjectCache())
    2398                 cache->childrenChanged(this);
    23992392        }
    24002393    }
Note: See TracChangeset for help on using the changeset viewer.