Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
f7851368
Unverified
Commit
f7851368
authored
Feb 17, 2023
by
Mouad Debbar
Committed by
GitHub
Feb 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[web] Temporarily disable a line boundary test (#121005)
parent
08b409ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
paragraph_test.dart
packages/flutter/test/rendering/paragraph_test.dart
+8
-2
No files found.
packages/flutter/test/rendering/paragraph_test.dart
View file @
f7851368
...
...
@@ -1061,7 +1061,10 @@ void main() {
selection
=
paragraph
.
selections
[
0
];
expect
(
selection
.
start
,
4
);
// how [are you]
if
(
isBrowser
&&
!
isCanvasKit
)
{
expect
(
selection
.
end
,
12
);
// TODO(mdebbar): Remove this "if" once this engine PR lands:
// https://github.com/flutter/engine/pull/39693
// expect(selection.end, 12);
}
else
{
expect
(
selection
.
end
,
11
);
}
...
...
@@ -1076,8 +1079,11 @@ void main() {
);
selection
=
paragraph
.
selections
[
0
];
if
(
isBrowser
&&
!
isCanvasKit
)
{
// TODO(mdebbar): Remove this "if" once this engine PR lands:
// https://github.com/flutter/engine/pull/39693
// how [are you\n]
expect
(
selection
,
const
TextRange
(
start:
4
,
end:
12
));
//
expect(selection, const TextRange(start: 4, end: 12));
}
else
{
// [how ]are you
expect
(
selection
,
const
TextRange
(
start:
0
,
end:
4
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment