File tree 1 file changed +8
-2
lines changed
packages/flutter/test/rendering
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -1061,7 +1061,10 @@ void main() {
1061
1061
selection = paragraph.selections[0 ];
1062
1062
expect (selection.start, 4 ); // how [are you]
1063
1063
if (isBrowser && ! isCanvasKit) {
1064
- expect (selection.end, 12 );
1064
+ // TODO(mdebbar): Remove this "if" once this engine PR lands:
1065
+ // https://github.com/flutter/engine/pull/39693
1066
+
1067
+ // expect(selection.end, 12);
1065
1068
} else {
1066
1069
expect (selection.end, 11 );
1067
1070
}
@@ -1076,8 +1079,11 @@ void main() {
1076
1079
);
1077
1080
selection = paragraph.selections[0 ];
1078
1081
if (isBrowser && ! isCanvasKit) {
1082
+ // TODO(mdebbar): Remove this "if" once this engine PR lands:
1083
+ // https://github.com/flutter/engine/pull/39693
1084
+
1079
1085
// how [are you\n]
1080
- expect (selection, const TextRange (start: 4 , end: 12 ));
1086
+ // expect(selection, const TextRange(start: 4, end: 12));
1081
1087
} else {
1082
1088
// [how ]are you
1083
1089
expect (selection, const TextRange (start: 0 , end: 4 ));
You can’t perform that action at this time.
0 commit comments