Index: LayoutTests/svg/animations/script-tests/animate-color-fill-currentColor.js |
diff --git a/LayoutTests/svg/animations/script-tests/animate-color-fill-currentColor.js b/LayoutTests/svg/animations/script-tests/animate-color-fill-currentColor.js |
index d686e321c5eef5ca71bae42a614f1778cc2f9293..d3c9e8a02a77ecd60ed6e64568d1bcd847fcb310 100644 |
--- a/LayoutTests/svg/animations/script-tests/animate-color-fill-currentColor.js |
+++ b/LayoutTests/svg/animations/script-tests/animate-color-fill-currentColor.js |
@@ -27,9 +27,6 @@ function sample1() { |
debug("Initial condition:"); |
expectFillColor(rect, 255, 0, 0); |
- shouldBeEqualToString("fillPaint.uri", ""); |
- shouldBe("fillPaint.paintType", "SVGPaint.SVG_PAINTTYPE_CURRENTCOLOR"); |
- shouldBe("fillPaint.colorType", "SVGColor.SVG_COLORTYPE_CURRENTCOLOR"); |
} |
function sample2() { |
@@ -37,9 +34,6 @@ function sample2() { |
debug("Half-time condition:"); |
expectFillColor(rect, 128, 64, 0); |
- shouldBeEqualToString("fillPaint.uri", ""); |
- shouldBe("fillPaint.paintType", "SVGPaint.SVG_PAINTTYPE_CURRENTCOLOR"); |
- shouldBe("fillPaint.colorType", "SVGColor.SVG_COLORTYPE_CURRENTCOLOR"); |
} |
function sample3() { |
@@ -47,9 +41,6 @@ function sample3() { |
debug("End condition:"); |
expectFillColor(rect, 0, 128, 0); |
- shouldBeEqualToString("fillPaint.uri", ""); |
- shouldBe("fillPaint.paintType", "SVGPaint.SVG_PAINTTYPE_CURRENTCOLOR"); |
- shouldBe("fillPaint.colorType", "SVGColor.SVG_COLORTYPE_CURRENTCOLOR"); |
} |
function executeTest() { |