Changeset 269803 in webkit


Ignore:
Timestamp:
Nov 13, 2020 2:56:53 PM (3 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, reverting r269776.

The test added with this change is asserting

Reverted changeset:

"Null check anchorNode of endingSelection start"
https://bugs.webkit.org/show_bug.cgi?id=218492
https://trac.webkit.org/changeset/269776

Location:
trunk
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r269790 r269803  
     12020-11-13  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Unreviewed, reverting r269776.
     4
     5        The test added with this change is asserting
     6
     7        Reverted changeset:
     8
     9        "Null check anchorNode of endingSelection start"
     10        https://bugs.webkit.org/show_bug.cgi?id=218492
     11        https://trac.webkit.org/changeset/269776
     12
    1132020-11-13  Sergey Rubanov  <chi187@gmail.com>
    214
  • trunk/Source/WebCore/ChangeLog

    r269802 r269803  
     12020-11-13  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Unreviewed, reverting r269776.
     4
     5        The test added with this change is asserting
     6
     7        Reverted changeset:
     8
     9        "Null check anchorNode of endingSelection start"
     10        https://bugs.webkit.org/show_bug.cgi?id=218492
     11        https://trac.webkit.org/changeset/269776
     12
    1132020-11-13  Geoffrey Garen  <ggaren@apple.com>
    214
  • trunk/Source/WebCore/editing/DeleteSelectionCommand.cpp

    r269776 r269803  
    762762
    763763    // FIXME (Bug 211793): endingSelection() becomes disconnected in moveParagraph
    764     if (auto* anchorNode = endingSelection().start().anchorNode(); anchorNode && anchorNode->isConnected())
     764    if (endingSelection().start().anchorNode()->isConnected())
    765765        m_endingPosition = endingSelection().start();
    766766}
Note: See TracChangeset for help on using the changeset viewer.