Index: third_party/WebKit/Source/core/editing/PendingSelection.cpp |
diff --git a/third_party/WebKit/Source/core/editing/PendingSelection.cpp b/third_party/WebKit/Source/core/editing/PendingSelection.cpp |
index c33d170db135b538733d97bc5186addddb031682..d5d8fc75144e50e97ceadcf02e7be99976fa83bf 100644 |
--- a/third_party/WebKit/Source/core/editing/PendingSelection.cpp |
+++ b/third_party/WebKit/Source/core/editing/PendingSelection.cpp |
@@ -139,8 +139,8 @@ void PendingSelection::commitAlgorithm(LayoutView& layoutView) |
void PendingSelection::commit(LayoutView& layoutView) |
{ |
- if (RuntimeEnabledFeatures::selectionForComposedTreeEnabled()) |
- return commitAlgorithm<EditingInComposedTreeStrategy>(layoutView); |
+ if (RuntimeEnabledFeatures::selectionForFlatTreeEnabled()) |
+ return commitAlgorithm<EditingInFlatTreeStrategy>(layoutView); |
commitAlgorithm<EditingStrategy>(layoutView); |
} |