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

Unified Diff: third_party/WebKit/LayoutTests/web-animations-api/player-play-with-negative-current-time.html

Issue 2144463002: Animations: Remove player-play-with-negative-current-time.html (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/player-play-with-negative-current-time.html
diff --git a/third_party/WebKit/LayoutTests/web-animations-api/player-play-with-negative-current-time.html b/third_party/WebKit/LayoutTests/web-animations-api/player-play-with-negative-current-time.html
deleted file mode 100644
index fbeb5b2c625e2635affc6d75ee705f79fb9c4f73..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/web-animations-api/player-play-with-negative-current-time.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<div id="target"></div>
-<script>
-test(function() {
- var keyframes = [
- {left: '0px'},
- {left: '100px'}
- ];
- var timing = {
- duration: 1,
- delay: -100,
- };
- var player = target.animate(keyframes, timing);
- document.timeline.currentTime = 0;
- var oldStartTime = player.startTime;
- player.startTime += 2000;
- assert_equals(player.startTime, oldStartTime + 2000);
- player.play();
- assert_equals(player.startTime, null);
- assert_equals(player.currentTime, 0);
-}, 'Play() called with a large negative delay');
-</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