We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b806d20 commit a7dac92Copy full SHA for a7dac92
1 file changed
packages/core/test/core_test.dart
@@ -1131,6 +1131,12 @@ void main() {
1131
expect(explained, equals('[RichText:(@8.3:Foo)]'));
1132
});
1133
1134
+ testWidgets('renders xxx-large', (WidgetTester tester) async {
1135
+ const html = '<span style="font-size: xxx-large">Foo</span>';
1136
+ final explained = await explain(tester, html);
1137
+ expect(explained, equals('[RichText:(@30.0:Foo)]'));
1138
+ });
1139
+
1140
testWidgets('renders xx-large', (WidgetTester tester) async {
1141
const html = '<span style="font-size: xx-large">Foo</span>';
1142
final explained = await explain(tester, html);
0 commit comments