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

Unified Diff: LayoutTests/svg/animations/script-tests/animate-color-fill-from-by.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-from-by.js
diff --git a/LayoutTests/svg/animations/script-tests/animate-color-fill-from-by.js b/LayoutTests/svg/animations/script-tests/animate-color-fill-from-by.js
index 88be206b4f01790f67aafd35a47dedd7708d15c6..b52c50b4b9b68c40c0cb9ca8f696df466952af09 100644
--- a/LayoutTests/svg/animations/script-tests/animate-color-fill-from-by.js
+++ b/LayoutTests/svg/animations/script-tests/animate-color-fill-from-by.js
@@ -27,9 +27,6 @@ function sample1() {
debug("Initial condition:");
expectFillColor(rect, 208, 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, 208, 0, 104);
- 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, 208, 0, 208);
- 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