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
d5844e8a
Unverified
Commit
d5844e8a
authored
Feb 21, 2020
by
Yegor
Committed by
GitHub
Feb 21, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable TextStyle hash test on the Web (#50985)
parent
f79963c6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
text_style_test.dart
packages/flutter/test/painting/text_style_test.dart
+1
-2
No files found.
packages/flutter/test/painting/text_style_test.dart
View file @
d5844e8a
...
@@ -4,7 +4,6 @@
...
@@ -4,7 +4,6 @@
import
'dart:ui'
as
ui
show
TextStyle
,
ParagraphStyle
,
FontFeature
,
Shadow
;
import
'dart:ui'
as
ui
show
TextStyle
,
ParagraphStyle
,
FontFeature
,
Shadow
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/painting.dart'
;
import
'package:flutter/painting.dart'
;
import
'../flutter_test_alternative.dart'
;
import
'../flutter_test_alternative.dart'
;
...
@@ -262,7 +261,7 @@ void main() {
...
@@ -262,7 +261,7 @@ void main() {
const
TextStyle
b
=
TextStyle
(
fontFamilyFallback:
<
String
>[
'Noto'
],
shadows:
<
ui
.
Shadow
>[
ui
.
Shadow
()],
fontFeatures:
<
ui
.
FontFeature
>[
ui
.
FontFeature
(
'abcd'
)]);
const
TextStyle
b
=
TextStyle
(
fontFamilyFallback:
<
String
>[
'Noto'
],
shadows:
<
ui
.
Shadow
>[
ui
.
Shadow
()],
fontFeatures:
<
ui
.
FontFeature
>[
ui
.
FontFeature
(
'abcd'
)]);
expect
(
a
.
hashCode
,
a
.
hashCode
);
expect
(
a
.
hashCode
,
a
.
hashCode
);
expect
(
a
.
hashCode
,
isNot
(
equals
(
b
.
hashCode
)));
expect
(
a
.
hashCode
,
isNot
(
equals
(
b
.
hashCode
)));
}
,
skip:
kIsWeb
);
});
test
(
'TextStyle foreground and color combos'
,
()
{
test
(
'TextStyle foreground and color combos'
,
()
{
const
Color
red
=
Color
.
fromARGB
(
255
,
255
,
0
,
0
);
const
Color
red
=
Color
.
fromARGB
(
255
,
255
,
0
,
0
);
...
...
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