Changeset 155161 in webkit


Ignore:
Timestamp:
Sep 5, 2013 5:16:28 PM (11 years ago)
Author:
ap@apple.com
Message:

Flaky Test: platform/mac/editing/deleting/deletionUI-single-instance.html
https://bugs.webkit.org/show_bug.cgi?id=114181

Reviewed by Ryosuke Niwa.

Editor survives navigations, and so did DeleteButtonController. But the state it holds
is document specific (like nodes in the old document).

  • editing/Editor.cpp: (WebCore::Editor::clear): Replace DeleteButtonController.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r155155 r155161  
     12013-09-05  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Flaky Test: platform/mac/editing/deleting/deletionUI-single-instance.html
     4        https://bugs.webkit.org/show_bug.cgi?id=114181
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Editor survives navigations, and so did DeleteButtonController. But the state it holds
     9        is document specific (like nodes in the old document).
     10
     11        * editing/Editor.cpp: (WebCore::Editor::clear): Replace DeleteButtonController.
     12
    1132013-09-05  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    214
  • trunk/Source/WebCore/editing/Editor.cpp

    r155139 r155161  
    922922    m_shouldStyleWithCSS = false;
    923923    m_defaultParagraphSeparator = EditorParagraphSeparatorIsDiv;
     924
     925#if ENABLE(DELETION_UI)
     926    m_deleteButtonController = adoptPtr(new DeleteButtonController(&m_frame));
     927#endif
    924928}
    925929
Note: See TracChangeset for help on using the changeset viewer.