Skip to content

Commit d60efa8

Browse files
committed
Remove obsolete test in svgelement_test
BUG= Review-Url: https://codereview.chromium.org/2902973004 .
1 parent f6ca2fc commit d60efa8

File tree

3 files changed

+0
-22
lines changed

3 files changed

+0
-22
lines changed

tests/html/html.status

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ element_types_test/supported_meter: RuntimeError # Issue 18573
133133

134134
[ $runtime == chrome ]
135135
touchevent_test/supported: Fail # Touch events are only supported on touch devices
136-
svgelement_test/PathElement: RuntimeError # Issue 25665
137136
element_animate_test/timing_dict: RuntimeError # Issue 26730
138137

139138
[ $runtime == chrome && $system == macos ]
@@ -381,7 +380,6 @@ typing_test: StaticWarning
381380
webgl_1_test: StaticWarning
382381
window_nosuchmethod_test: StaticWarning
383382
js_typed_interop_default_arg_test/default_value: MissingCompileTimeError # Issue #25759
384-
svgelement_test: StaticWarning # Issue 29594
385383

386384
[ $compiler == dart2analyzer && $builder_tag == strong ]
387385
*: Skip # Issue 28649

tests/html/svgelement_test.dart

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -480,14 +480,4 @@ main() {
480480
expect(rect.height, closeTo(100, 1));
481481
});
482482
});
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-
});
493483
}

tests/lib_strong/html/svgelement_test.dart

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -477,14 +477,4 @@ main() {
477477
expect(rect.height, closeTo(100, 1));
478478
});
479479
});
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-
});
490480
}

0 commit comments

Comments
 (0)