| Index: Source/core/editing/VisibleSelection.cpp
|
| diff --git a/Source/core/editing/VisibleSelection.cpp b/Source/core/editing/VisibleSelection.cpp
|
| index b37baddacdcde8b6dddd213f92b4106b0e51e6a4..65f56903d745edccdbac0febc687ec369dc90165 100644
|
| --- a/Source/core/editing/VisibleSelection.cpp
|
| +++ b/Source/core/editing/VisibleSelection.cpp
|
| @@ -1146,8 +1146,7 @@ bool VisibleSelection::InDOMTree::equalSelections(const VisibleSelection& select
|
| if (selection1.isNone())
|
| return selection2.isNone();
|
|
|
| - return selection1.start() == selection2.start() && selection1.end() == selection2.end() && selection1.affinity() == selection2.affinity()
|
| - && selection1.isDirectional() == selection2.isDirectional() && selection1.base() == selection2.base() && selection1.extent() == selection2.extent();
|
| + return selection1.start() == selection2.start() && selection1.end() == selection2.end() && selection1.base() == selection2.base() && selection1.extent() == selection2.extent();
|
| }
|
|
|
| bool VisibleSelection::InComposedTree::equalSelections(const VisibleSelection& a, const VisibleSelection& b)
|
|
|