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

Unified Diff: LayoutTests/web-animations-api/w3c/add-keyframes.html

Issue 1326443003: Web Animations: Enable additive animations in experimental (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update missed tests Created 5 years, 3 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/web-animations-api/w3c/add-keyframes.html
diff --git a/LayoutTests/web-animations-api/w3c/add-keyframes.html b/LayoutTests/web-animations-api/w3c/add-keyframes.html
deleted file mode 100644
index 81d1cc2e5f3c89374c8da5f32a89526952145d9b..0000000000000000000000000000000000000000
--- a/LayoutTests/web-animations-api/w3c/add-keyframes.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!doctype html>
-<title>Web Animations API: Add Keyframe tests</title>
-<script src='../../resources/testharness.js'></script>
-<script src='../../resources/testharnessreport.js'></script>
-<div id='log'></div>
-<div id='div'></div>
-<script>
-
-test(function() {
- assert_throws({name: 'NotSupportedError'}, function() {
- div.animate([{height: '100px', composite: 'add'}, {height: '200px', composite: 'add'}], 1);
- }, 'Add animations should cause an exception.');
-},
-'Add animation tests',
-{
- help: 'http://dev.w3.org/fxtf/web-animations/#the-unaccumulated-animation-value-of-a-keyframe-animation-effect',
- assert: 'Only keyframes without add compositing considered',
- author: 'Shane Stephens'
-});
-
-test(function() {
- assert_throws({name: 'NotSupportedError'}, function() {
- div.animate([{height: '100px'}, {height: '200px', composite: 'add'}], 1);
- }, 'Animations with add keyframes should cause an exception.');
-},
-'Hybrid animation tests',
-{
- help: 'http://dev.w3.org/fxtf/web-animations/#the-unaccumulated-animation-value-of-a-keyframe-animation-effect',
- assert: 'Only keyframes without add compositing are considered',
- author: 'Shane Stephens'
-});
-
-</script>
« no previous file with comments | « LayoutTests/web-animations-api/partial-keyframes.html ('k') | LayoutTests/web-animations-api/w3c/insufficient-keyframes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698