File tree 3 files changed +0
-22
lines changed 3 files changed +0
-22
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,6 @@ element_types_test/supported_meter: RuntimeError # Issue 18573
133
133
134
134
[ $runtime == chrome ]
135
135
touchevent_test/supported: Fail # Touch events are only supported on touch devices
136
- svgelement_test/PathElement: RuntimeError # Issue 25665
137
136
element_animate_test/timing_dict: RuntimeError # Issue 26730
138
137
139
138
[ $runtime == chrome && $system == macos ]
@@ -381,7 +380,6 @@ typing_test: StaticWarning
381
380
webgl_1_test: StaticWarning
382
381
window_nosuchmethod_test: StaticWarning
383
382
js_typed_interop_default_arg_test/default_value: MissingCompileTimeError # Issue #25759
384
- svgelement_test: StaticWarning # Issue 29594
385
383
386
384
[ $compiler == dart2analyzer && $builder_tag == strong ]
387
385
*: Skip # Issue 28649
Original file line number Diff line number Diff line change @@ -480,14 +480,4 @@ main() {
480
480
expect (rect.height, closeTo (100 , 1 ));
481
481
});
482
482
});
483
-
484
- group ('PathElement' , () {
485
- test ('pathSegList' , () {
486
- svg.PathElement path =
487
- new svg.SvgElement .svg ('<path d="M 100 100 L 300 100 L 200 300 z"/>' );
488
- for (var seg in path.pathSegList) {
489
- expect (seg is svg.PathSeg , isTrue);
490
- }
491
- });
492
- });
493
483
}
Original file line number Diff line number Diff line change @@ -477,14 +477,4 @@ main() {
477
477
expect (rect.height, closeTo (100 , 1 ));
478
478
});
479
479
});
480
-
481
- group ('PathElement' , () {
482
- test ('pathSegList' , () {
483
- svg.PathElement path =
484
- new svg.SvgElement .svg ('<path d="M 100 100 L 300 100 L 200 300 z"/>' );
485
- for (var seg in path.pathSegList) {
486
- expect (seg is svg.PathSeg , isTrue);
487
- }
488
- });
489
- });
490
480
}
You can’t perform that action at this time.
0 commit comments