⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 179926 in webkit


Ignore:
Timestamp:
Feb 11, 2015, 7:34:13 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

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

caused about 30 test failures on yosemite and mavericks
(Requested by alexchristensen on #webkit).

Reverted changeset:

"Div having contentEditable and display:flex cannot be edited
if it is empty."
https://bugs.webkit.org/show_bug.cgi?id=141218
http://trac.webkit.org/changeset/179921

Location:
trunk
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r179924 r179926  
     12015-02-11  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r179921.
     4        https://bugs.webkit.org/show_bug.cgi?id=141473
     5
     6        caused about 30 test failures on yosemite and mavericks
     7        (Requested by alexchristensen on #webkit).
     8
     9        Reverted changeset:
     10
     11        "Div having contentEditable and display:flex cannot be edited
     12        if it is empty."
     13        https://bugs.webkit.org/show_bug.cgi?id=141218
     14        http://trac.webkit.org/changeset/179921
     15
    1162015-02-11  Marcos Chavarría Teijeiro  <chavarria1991@gmail.com>
    217
  • trunk/Source/WebCore/ChangeLog

    r179921 r179926  
     12015-02-11  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r179921.
     4        https://bugs.webkit.org/show_bug.cgi?id=141473
     5
     6        caused about 30 test failures on yosemite and mavericks
     7        (Requested by alexchristensen on #webkit).
     8
     9        Reverted changeset:
     10
     11        "Div having contentEditable and display:flex cannot be edited
     12        if it is empty."
     13        https://bugs.webkit.org/show_bug.cgi?id=141218
     14        http://trac.webkit.org/changeset/179921
     15
    1162015-02-11  ChangSeok Oh  <changseok.oh@collabora.com>
    217
  • trunk/Source/WebCore/dom/Position.cpp

    r179921 r179926  
    3636#include "PositionIterator.h"
    3737#include "RenderBlock.h"
    38 #include "RenderFlexibleBox.h"
    3938#include "RenderInline.h"
    4039#include "RenderIterator.h"
     
    936935    if (m_anchorNode->hasTagName(htmlTag))
    937936        return false;
    938 
    939     if (is<RenderBlockFlow>(*renderer) || is<RenderFlexibleBox>(*renderer)) {
     937       
     938    if (is<RenderBlockFlow>(*renderer)) {
    940939        RenderBlockFlow& block = downcast<RenderBlockFlow>(*renderer);
    941940        if (block.logicalHeight() || m_anchorNode->hasTagName(bodyTag)) {
Note: See TracChangeset for help on using the changeset viewer.