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
883bae07
Commit
883bae07
authored
Feb 03, 2017
by
Jason Simmons
Committed by
GitHub
Feb 03, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Roll engine (#7862)
parent
072cce88
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
engine.version
bin/internal/engine.version
+1
-1
text_style_test.dart
packages/flutter/test/painting/text_style_test.dart
+2
-2
No files found.
bin/internal/engine.version
View file @
883bae07
c
354127d4dfd2b960a6fa7ca173d65cb005801fa
c
d34b0ef392a37515f1f838c8996e95f17dc6789
packages/flutter/test/painting/text_style_test.dart
View file @
883bae07
...
...
@@ -98,9 +98,9 @@ void main() {
ui
.
ParagraphStyle
ps2
=
s2
.
getParagraphStyle
(
textAlign:
TextAlign
.
center
);
expect
(
ps2
,
equals
(
new
ui
.
ParagraphStyle
(
textAlign:
TextAlign
.
center
,
fontWeight:
FontWeight
.
w800
,
fontSize:
10.0
,
lineHeight:
100.0
)));
expect
(
ps2
.
toString
(),
'ParagraphStyle(textAlign: TextAlign.center, fontWeight: FontWeight.w800, fontStyle: unspecified,
lineCount: unspecified, fontFamily: unspecified, fontSize: 10.0, lineHeight: 100.0x, maxLines: unspecified
, ellipsis: unspecified)'
);
expect
(
ps2
.
toString
(),
'ParagraphStyle(textAlign: TextAlign.center, fontWeight: FontWeight.w800, fontStyle: unspecified,
maxLines: unspecified, fontFamily: unspecified, fontSize: 10.0, lineHeight: 100.0x
, ellipsis: unspecified)'
);
ui
.
ParagraphStyle
ps5
=
s5
.
getParagraphStyle
();
expect
(
ps5
,
equals
(
new
ui
.
ParagraphStyle
(
fontWeight:
FontWeight
.
w700
,
fontSize:
12.0
,
lineHeight:
123.0
)));
expect
(
ps5
.
toString
(),
'ParagraphStyle(textAlign: unspecified, fontWeight: FontWeight.w700, fontStyle: unspecified,
lineCount: unspecified, fontFamily: unspecified, fontSize: 12.0, lineHeight: 123.0x, maxLines: unspecified
, ellipsis: unspecified)'
);
expect
(
ps5
.
toString
(),
'ParagraphStyle(textAlign: unspecified, fontWeight: FontWeight.w700, fontStyle: unspecified,
maxLines: unspecified, fontFamily: unspecified, fontSize: 12.0, lineHeight: 123.0x
, ellipsis: unspecified)'
);
});
}
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