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

Unified Diff: third_party/WebKit/LayoutTests/web-animations-api/eased-keyframes-non-animatable.html

Issue 2136323003: Clean up eased-keyframes-non-animatable.html test to match W3C (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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/eased-keyframes-non-animatable.html
diff --git a/third_party/WebKit/LayoutTests/web-animations-api/eased-keyframes-non-animatable.html b/third_party/WebKit/LayoutTests/web-animations-api/eased-keyframes-non-animatable.html
deleted file mode 100644
index e5dcd8f7141d1440c7de437fa7d236e8895e66ff..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/web-animations-api/eased-keyframes-non-animatable.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<script src="w3c/resources/keyframes-test.js"></script>
-<script>
-test(function() {
- assertAnimationStyles([
- {opacity: '0', position: 'absolute', easing: 'steps(4, start)'},
- {opacity: '0.5', position: 'relative'}
- ], {
- 0: {opacity: '0.125', position: 'absolute'},
- 0.25: {opacity: '0.25', position: 'relative'},
- 0.5: {opacity: '0.375', position: 'relative'},
- 0.75: {opacity: '0.5', position: 'relative'},
- 1: {opacity: '0.5', position: 'relative'}
- });
-},
-'element.animate() with eased keyframe on non-animatable property',
-{
- assert: [
- 'element.animate() should start an animation when keyframes are specified with timing functions',
- 'for their easing property. Non-animatable properties should take on the first value when the',
- 'functions value is less than 0.5, and the second value otherwise.',
- ],
- author: 'George Caley',
-});
-</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