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

Unified Diff: third_party/WebKit/LayoutTests/animations/events-with-short-duration-and-delay.html

Issue 2976603002: Move animation event 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/events-with-short-duration-and-delay.html
diff --git a/third_party/WebKit/LayoutTests/animations/events-with-short-duration-and-delay.html b/third_party/WebKit/LayoutTests/animations/events-with-short-duration-and-delay.html
deleted file mode 100644
index d3b8e7afe0555b352203a9895bd57701340fe2f4..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/events-with-short-duration-and-delay.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>Test events when the animation has a short duration and is delayed</title>
- <style>
- #box {
- position: relative;
- left: 100px;
- top: 10px;
- height: 100px;
- width: 100px;
- animation-duration: 0.001s;
- animation-delay: 0.001s;
- animation-name: anim;
- background-color: #999;
- animation-iteration-count: 2;
- }
- @keyframes anim {
- from { left: 200px; }
- to { left: 300px; }
- }
- </style>
- <script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- onload = function()
- {
- document.addEventListener('animationstart', function() {
- document.getElementById('result').innerHTML = 'PASS: got animationstart event';
- }, false);
- document.addEventListener('animationend', function() {
- document.getElementById('result').innerHTML += '<br>PASS: got animationend event';
- if (window.testRunner)
- testRunner.notifyDone();
- }, false);
-
- // Animation begins once we append the DOM node to the document.
- var boxNode = document.createElement('div');
- boxNode.id = 'box';
- document.body.appendChild(boxNode);
- }
- </script>
-</head>
-<body>
-Test events when the animation has a short duration and is delayed.
-<pre id="result">FAIL: No events received</pre>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698