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

Unified Diff: third_party/WebKit/LayoutTests/animations/css-animation-overrides-svg-presentation-attribute-animation.html

Issue 2975793004: Move animation svg tests to own subdirectory (Closed)
Patch Set: Created 3 years, 5 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: third_party/WebKit/LayoutTests/animations/css-animation-overrides-svg-presentation-attribute-animation.html
diff --git a/third_party/WebKit/LayoutTests/animations/css-animation-overrides-svg-presentation-attribute-animation.html b/third_party/WebKit/LayoutTests/animations/css-animation-overrides-svg-presentation-attribute-animation.html
deleted file mode 100644
index cd67cbed0b8a9cfad545f01c892bed295480092e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/css-animation-overrides-svg-presentation-attribute-animation.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-
-<svg>
- <rect id="target"/>
-</svg>
-
-<script>
-test(() => {
- target.animate({color: 'green'}, {fill: 'forwards'});
- target.animate({'svg-color': 'red'}, {fill: 'forwards'});
- assert_equals(getComputedStyle(target).color, 'rgb(0, 128, 0)');
-}, 'CSS animations always override SVG presentation attribute animations');
-</script>

Powered by Google App Engine
This is Rietveld 408576698