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

Unified Diff: third_party/WebKit/LayoutTests/animations/element-animate-keyframe-value-warning.html

Issue 2976613002: Move Web Animations API tests to 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/element-animate-keyframe-value-warning.html
diff --git a/third_party/WebKit/LayoutTests/animations/element-animate-keyframe-value-warning.html b/third_party/WebKit/LayoutTests/animations/element-animate-keyframe-value-warning.html
deleted file mode 100644
index 33756496ed8517146fc1e29fa68c723a9965d65d..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/element-animate-keyframe-value-warning.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<div id="target"></div>
-This test passes if there are three warnings about invalid keyframe values.
-<script>
-if (window.testRunner) {
- testRunner.dumpAsText();
-}
-target.animate({offsetPath: ''});
-target.animate({offsetPath: 'path("m0 0")'});
-target.animate({offsetPath: 'path("invalid")'});
-target.animate({'--valid': ''});
-target.animate({'--x': 'valid'});
-target.animate({'--x': 'invalid )'});
-target.animate({'--x': 'invalid !important'});
-target.animate([{background: 'green', backgroundColor: 'green'}]);
-</script>

Powered by Google App Engine
This is Rietveld 408576698