Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Unified Diff: LayoutTests/svg/animations/script-tests/animate-color-fill-currentColor.js

Issue 114373004: Remove the SVGColor and SVGPaint DOM interfaces (were deprecated). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: text diff fix Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {

Powered by Google App Engine
This is Rietveld 408576698