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

Unified Diff: LayoutTests/svg/W3C-SVG-1.1/animate-elem-85-t.svg

Issue 137443006: Remove support for <animateColor>. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: test adjustments Created 6 years, 11 months 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/W3C-SVG-1.1/animate-elem-85-t.svg
diff --git a/LayoutTests/svg/W3C-SVG-1.1/animate-elem-85-t.svg b/LayoutTests/svg/W3C-SVG-1.1/animate-elem-85-t.svg
index 97f01c60301b3b55b1c420013e83caafe078fe65..122c9f301bdc7e026ade5b816cf826f9bcab1115 100644
--- a/LayoutTests/svg/W3C-SVG-1.1/animate-elem-85-t.svg
+++ b/LayoutTests/svg/W3C-SVG-1.1/animate-elem-85-t.svg
@@ -28,38 +28,38 @@ Then, the bottom two rectangles should smoothly animate from green, through oran
<!--======================================================================-->
<g id="test-body-content">
<rect fill="#f00" x="30" y="50" height="100" width="90">
- <animateColor attributeName="fill"
+ <animate attributeName="fill"
from="#000000" to="green"
begin="0s" dur="5s" fill="freeze" />
</rect>
<rect fill="#f00" x="140" y="50" height="100" width="90">
- <animateColor attributeName="fill"
+ <animate attributeName="fill"
from="#000000" to="#008000"
begin="0s" dur="5s" fill="freeze" />
</rect>
<rect color="green" fill="#f00" x="250" y="50" height="100" width="90">
- <animateColor attributeName="fill"
+ <animate attributeName="fill"
from="#000000" to="currentColor"
begin="0s" dur="5s" fill="freeze" />
</rect>
<rect color="black" fill="#f00" x="360" y="50" height="100" width="90">
- <animateColor attributeName="fill"
+ <animate attributeName="fill"
to="#008000" from="currentColor"
begin="0s" dur="5s" fill="freeze" />
</rect>
<rect color="black" fill="#f00" x="100" y="180" height="60" width="280">
- <animateColor attributeName="fill"
+ <animate attributeName="fill"
from="#008000" to="currentColor"
begin="5s" dur="5s" fill="freeze" />
- <animateColor attributeName="color"
+ <animate attributeName="color"
to="yellow" from="red"
begin="5s" dur="5s" fill="freeze" />
</rect>
<rect color="black" fill="#f00" x="100" y="260" height="60" width="280">
- <animateColor attributeName="fill"
+ <animate attributeName="fill"
from="#008000" to="currentColor"
begin="5s" dur="5s" fill="freeze" />
- <animateColor attributeName="color"
+ <animate attributeName="color"
to="yellow" from="#f00"
begin="5s" dur="5s" fill="freeze" />
</rect>

Powered by Google App Engine
This is Rietveld 408576698