| Index: tests/html/svg_3_test.dart
|
| diff --git a/tests/html/svg_3_test.dart b/tests/html/svg_3_test.dart
|
| index 06271da6ee95c87f22de80f4a0cdd5cf5fd81bf1..91e2eee02c91c5f1f463686ce95718ea84110bc5 100644
|
| --- a/tests/html/svg_3_test.dart
|
| +++ b/tests/html/svg_3_test.dart
|
| @@ -81,20 +81,6 @@ main() {
|
| }
|
|
|
| /**
|
| - * Verifies that [e] supports the operations on the svg.Stylable interface.
|
| - */
|
| - checkSvgStylable(e) {
|
| - var className = e.$dom_svgClassName;
|
| - expect(className, isSvgAnimatedString);
|
| -
|
| - var s = e.style;
|
| - expect(s, isCssStyleDeclaration);
|
| -
|
| - var attributeA = e.getPresentationAttribute('A');
|
| - expect(attributeA, anyOf(isNull, isCssValue));
|
| - }
|
| -
|
| - /**
|
| * Verifies that [e] supports the operations on the svg.Locatable interface.
|
| */
|
| checkSvgLocatable(e) {
|
| @@ -137,7 +123,6 @@ main() {
|
| testRect('rect_SvgLangSpace', checkSvgLangSpace);
|
| testRect('rect_SvgExternalResourcesRequired',
|
| checkSvgExternalResourcesRequired);
|
| - testRect('rect_SvgStylable', checkSvgStylable);
|
| testRect('rect_SvgLocatable', checkSvgLocatable);
|
| testRect('rect_SvgTransformable', checkSvgTransformable);
|
|
|
|
|