Changeset 203097 in webkit


Ignore:
Timestamp:
Jul 11, 2016, 4:44:44 PM (9 years ago)
Author:
Simon Fraser
Message:

Deleting in a text input inside an iframe causes the page to scroll incorrectly
https://bugs.webkit.org/show_bug.cgi?id=159654
rdar://problem/26805722

Reviewed by Zalan Bujtas.

Source/WebCore:

Editor::revealSelectionAfterEditingOperation() needs the same iOS-specific reveal
behavior as was added for typing in r202295.

Test: fast/forms/ios/delete-in-input-in-iframe.html

  • editing/Editor.cpp:

(WebCore::Editor::revealSelectionAfterEditingOperation):

LayoutTests:

  • fast/forms/ios/delete-in-input-in-iframe-expected.txt: Added.
  • fast/forms/ios/delete-in-input-in-iframe.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r203092 r203097  
     12016-07-11  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Deleting in a text input inside an iframe causes the page to scroll incorrectly
     4        https://bugs.webkit.org/show_bug.cgi?id=159654
     5        rdar://problem/26805722
     6
     7        Reviewed by Zalan Bujtas.
     8
     9        * fast/forms/ios/delete-in-input-in-iframe-expected.txt: Added.
     10        * fast/forms/ios/delete-in-input-in-iframe.html: Added.
     11
    1122016-07-11  Myles C. Maxfield  <mmaxfield@apple.com>
    213
  • trunk/Source/WebCore/ChangeLog

    r203093 r203097  
     12016-07-11  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Deleting in a text input inside an iframe causes the page to scroll incorrectly
     4        https://bugs.webkit.org/show_bug.cgi?id=159654
     5        rdar://problem/26805722
     6
     7        Reviewed by Zalan Bujtas.
     8
     9        Editor::revealSelectionAfterEditingOperation() needs the same iOS-specific reveal
     10        behavior as was added for typing in r202295.
     11
     12        Test: fast/forms/ios/delete-in-input-in-iframe.html
     13
     14        * editing/Editor.cpp:
     15        (WebCore::Editor::revealSelectionAfterEditingOperation):
     16
    1172016-07-11  Andy Estes  <aestes@apple.com>
    218
  • trunk/Source/WebCore/editing/Editor.cpp

    r202757 r203097  
    28062806        return;
    28072807
    2808     m_frame.selection().revealSelection(SelectionRevealMode::Reveal, alignment, revealExtentOption);
     2808#if PLATFORM(IOS)
     2809    SelectionRevealMode revealMode = SelectionRevealMode::RevealUpToMainFrame;
     2810#else
     2811    SelectionRevealMode revealMode = SelectionRevealMode::Reveal;
     2812#endif
     2813
     2814    m_frame.selection().revealSelection(revealMode, alignment, revealExtentOption);
    28092815}
    28102816
Note: See TracChangeset for help on using the changeset viewer.