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

Unified Diff: third_party/WebKit/LayoutTests/web-animations-api/w3c/same-offset-keyframes.html

Issue 2139683003: Remove w3c/same-offset-keyframes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/web-animations-api/w3c/same-offset-keyframes.html
diff --git a/third_party/WebKit/LayoutTests/web-animations-api/w3c/same-offset-keyframes.html b/third_party/WebKit/LayoutTests/web-animations-api/w3c/same-offset-keyframes.html
deleted file mode 100644
index f3c5da99669ec9b90ec6a02b2571680e11fd64e6..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/web-animations-api/w3c/same-offset-keyframes.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<!DOCTYPE html>
-<script src="../../resources/testharness.js"></script>
-<script src="../../resources/testharnessreport.js"></script>
-<script src="resources/keyframes-test.js"></script>
-<script>
-test(function() {
- assertAnimationStyles([
- {opacity: '0', left: '0px'},
- {opacity: '0.5', left: '50px', offset: 0.5},
- {opacity: '0', left: '0px', offset: 0.5},
- {opacity: '0.75', left: '75px', offset: 0.5},
- {opacity: '0.25', left: '25px'},
- ], {
- 0.25: {opacity: '0.25', left: '25px'},
- 0.5: {opacity: '0.75', left: '75px'},
- 0.75: {opacity: '0.5', left: '50px'},
- })
-},
-'element.animate() with keyframes at the same offset with overlapping properties',
-{
- help: 'http://dev.w3.org/fxtf/web-animations/#the-unaccumulated-animation-value-of-a-keyframe-animation-effect',
- assert: [
- 'element.animate() should start an animation when keyframes have equal offset values.',
- 'The overlapping properties in the equal offset keyframes should see a disjoint',
- 'interpolation pattern at the offset relative to the ordering of the keyframes.',
- ],
- author: 'Alan Cutter',
-});
-
-test(function() {
- assertAnimationStyles([
- {opacity: '0', left: '0px'},
- {opacity: '0.75', offset: 0.5},
- {left: '75px', offset: 0.5},
- {opacity: '0.25', left: '25px'},
- ], {
- 0.25: {opacity: '0.375', left: '37.5px'},
- 0.5: {opacity: '0.75', left: '75px'},
- 0.75: {opacity: '0.5', left: '50px'},
- })
-},
-'element.animate() with keyframes at the same offset with disjoint properties',
-{
- help: 'http://dev.w3.org/fxtf/web-animations/#the-unaccumulated-animation-value-of-a-keyframe-animation-effect',
- assert: [
- 'element.animate() should start an animation when keyframes have equal offset values.',
- 'If the properties of the equal offset keyframes are disjoint then the animation should',
- 'be equivalent to having a single keyframe at that offset (assuming the easings are equal too).',
- ],
- author: 'Alan Cutter',
-});
-</script>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698